I'd like to know how to convert strings in Python to their corresponding integer values, like so:
>>>print WhateverFunctionDoesThis('\x41\x42')
>>>16706
I've searched around but haven't been able to find an easy way to do this.
Thank you.
|
I'd like to know how to convert strings in Python to their corresponding integer values, like so:
I've searched around but haven't been able to find an easy way to do this. Thank you. |
|||
|
|
For other format chars see the documentation |
|||
|
If '\x41\x42' is 16-based num, like AB. You can use string to convert it.
Sorry if i got you wrong... |
|||
|
|
ugly way:
or
|
|||||
|