>>> "{:02x}".format(13)
'0d'
>>> "{:02x}".format(239557639)
'e475c07'
我知道这种格式是成对的十六进制格式。它也适用于另一个整数,但不适用于239557639
实际上,我想对输出进行跟踪
>>> bytearray.fromhex('e475c07')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: non-hexadecimal number found in fromhex() arg at position 7
>>> bytearray.fromhex('0e475c07')
bytearray(b'\x0eG\\\x07')
>>>
答案 0 :(得分:1)
一个更通用的函数,使可打印的字节对齐的十六进制字符串成为整数:
def aligned_hex_string(number, align_by=2):
length = len(format(number, 'x'))
mod = length % align_by
return format(number, '0{}x'.format(length + align_by - mod) if mod else 'x')
print(aligned_hex_string(13))
print(aligned_hex_string(255))
print(aligned_hex_string(256))
print(aligned_hex_string(239557639))
print(aligned_hex_string(239557, 4))
输出:
0d
ff
0100
0e475c07
0003a7c5