I want to get a list of ints representing the bytes in a string.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
One option for Python 2.6 and later is to use a
For Python 3.x you'd need a
|
||||
|
|
|
Do you mean the ascii values?
or
|
|||||||||||||
|
|
Perhaps you mean a string of bytes, for example received over the net, representing a couple of integer values? In that case you can "unpack" the string into the integer values by using unpack() and specifying "i" for integer as the format string. |
|||||||||||||
|