How do I convert a string in Python to its ASCII hex representants?
Example: I want to result '\x00\x1b\xd4}\xa4\xf3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' in 001bd47da4f3.
|
How do I convert a string in Python to its ASCII hex representants? Example: I want to result |
|||
|
|
As per martineau's comment, here is the Python 3 way:
|
|||||||||||||
|
|
With python 2.x you can encode a string to it's hex representation. It will not work with python3.x
It's not entirely clear if you have a literal string containing the escapes (so basically r'\x00\x1b' and so on) or not. Also, it's unclear why you don't expect the trailing zeroes, but you can remove those before the encode using .rstrip("\x00") |
|||||||||||||||
|
|
Alternative:
|
|||||||
|
|
Here's another answer that ought to work with all Python versions from 3.x all the way back to 2.0 (min version according to pyqver). Despite that, because it's based on a simple table (not dict) lookup, it should also be relatively quick. A little one-time set-up is required, but is very simple and avoids using the any of the many enhancements that have were added (or removed) along the way in a quest for version independence.
|
||||
|
|
|
|||||||||||||||||||||
|