Python : Convert from C-Char to Int
- by cuband
I have a string read in from a binary file that is unpacked using struct.unpack as a string of length n.
Each byte in the string is a single integer (1-byte) representing 0-255. So for each character in the string I want to convert it to an integer.
I can't figure out how to do this. Using ord doesn't seem to be on the right track...