I am getting this:
_format_ = "7c7sc"
print struct.unpack(self._format_, data)
gives
('\x7f', 'E', 'L', 'F', '\x01', '\x01', '\x01', '\x00\x00\x00\x00\x00\x00\x00', '\x00')
I want to take '\x01'
and get 1 from it, i.e., convert to ``int. Any ideas?
Thanks
ord("\x01")
will return 1.
Perhaps you are thinking of the ord
function?
>>> ord("\x01")
1
>>> ord("\x02")
2
>>> ord("\x7f")
127
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With