我想取一个整数(这将是<= 255),以十六进制字符串表示

例:我想传入65并得到'\x41',或者255并得到'\xff'。

我尝试过用struct.pack('c',65)这样做,但它会阻塞任何超过9的东西,因为它想要接受单个字符串。


当前回答

你可以用另一种表达方式

[in] '%s' % hex(15)
[out]'0xf'

其他回答

对于Python >= 3.6,使用f-string格式:

>>> x = 114514
>>> f'{x:0x}'
'1bf52'
>>> f'{x:#x}'
'0x1bf52'

我想要一个随机整数转换成一个六位数十六进制字符串与#在开始。为了得到这个,我用了

"#%6x" % random.randint(0xFFFFFF)

使用format(),按照format-examples,我们可以做到:

>>> # format also supports binary numbers
>>> "int: {0:d};  hex: {0:x};  oct: {0:o};  bin: {0:b}".format(42)
'int: 42;  hex: 2a;  oct: 52;  bin: 101010'
>>> # with 0x, 0o, or 0b as prefix:
>>> "int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}".format(42)
'int: 42;  hex: 0x2a;  oct: 0o52;  bin: 0b101010'

Try:

"0x%x" % 255 # => 0xff

or

"0x%X" % 255 # => 0xFF

Python文档说:“把这个放在你的枕头下面:http://docs.python.org/library/index.html”

我把这个加起来,因为有时候你只想要个位数表示

(x可以是小写字母'x',也可以是大写字母'x',选择决定输出的字母是大写还是小写。):

'{:x}'.format(15)
> f

现在有了新的f "格式字符串,你可以做:

f'{15:x}'
> f

要添加0填充,您可以使用0>n:

f'{2034:0>4X}'
> 07F2

注意:f'{15:x}'中的首字母'f'表示格式字符串