Code: Select all
mystr = b'FFF7E7FF704268426803FF380E53131212121312000012BB01BA3300008200016D9E00016C790000865D00008206003723630D016E0271027103E8'
In python I would do
Code: Select all
int(mystr[44:46],base=16)
Code: Select all
mystr = b'FFF7E7FF704268426803FF380E53131212121312000012BB01BA3300008200016D9E00016C790000865D00008206003723630D016E0271027103E8'
Code: Select all
int(mystr[44:46],base=16)
Code: Select all
int(mystr[44:46],16)
well said and that's why forums are for !!!dougconran wrote: ↑Thu Aug 12, 2021 9:12 amYes, that has worked for me as well. How simple and obvious these things are when you know! - Thanks