Show hex value for all bytes, even when ASCII characters are present

In Python (3) at least, if a binary value has an ASCII representation, it is shown instead of the hexadecimal value. For instance, the binary value of 67 which is ASCII C is show as follows:

bytes([67]) # b'C'

Whereas for binary values without ASCII representations, they are shown in hex. I.E.

b'x0f'

Is there a way to force Python to show the binary values in their binary-hex form (if this is what it is called), even when there are ASCII representations?

Edit: By this I mean, something that starts with b'x',. This would make debugging easier when you are looking for specific bytes to be printed for instance.

Thanks

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

After installing my package all-escapes there will be a new codec available for this usage.

>>> b = bytes([10,67,128])
>>> print(b.decode("all-escapes"))
x0ax43x80

Method 2

There is no specific means of requiring any particular formatting (like x) for a byte string. If you really need specific formatting, you could use something like the .hex() solution from this question, but wrap it with other code to insert the formatting you need. Another useful tool is the hex builtin function. For instance, if you want x:

>>> x = bytes([67, 128])
>>> print(''.join(r'x'+hex(letter)[2:] for letter in x))
x43x80

If you just need to be able to visually distinguish the bytes, using hex by itself may work for you (it uses 0x instead of x):

>>> print(''.join(hex(letter) for letter in x))
0x430x80

There is not a way to make this the default behavior for byte strings. Whatever you do, you’re going to have to write code that specifies the display format you want; you can’t make Python automatically display printable bytes as x escapes.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x