“{:02x}”无法生成239557639的成对十六进制格式

问题描述 投票:0回答:2
  >>> "{: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')
>>>
python python-3.x hex number-formatting
2个回答
1
投票

在这种情况下,您的十六进制数字格式可能会出现问题。试试{:08x}

>>> bytearray.fromhex('{:08x}'.format(239557639))
bytearray(b'\x0eG\\\x07')

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
© www.soinside.com 2019 - 2024. All rights reserved.