I want to take a value like:
ff0000
and make it into a byte array containing those hex values:
\xff\x00\x00
I'm not clear on how to do this using str.unpack
I want to take a value like:
ff0000
and make it into a byte array containing those hex values:
\xff\x00\x00
I'm not clear on how to do this using str.unpack