带有 ASCII 值的整数到字符串

发布于 2024-12-24 03:25:28 字数 275 浏览 0 评论 0原文

我有一个包含四个字符的四个 ASCII 代码的整数:

0x31323334

我需要将此整数转换为字符串:

"1234" ~ "\x31\x32\x33\x34"

有比这更好的解决方案吗?

mystring = '%0*x' % (8, 0x31323334) # "31323334"
mystring.decode('hex') # "1234"

I have an integer containing four ASCII codes for four chars:

0x31323334

I need to convert this integer to a string:

"1234" ~ "\x31\x32\x33\x34"

Is there better solution than this?

mystring = '%0*x' % (8, 0x31323334) # "31323334"
mystring.decode('hex') # "1234"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风筝有风,海豚有海 2024-12-31 03:25:28

不确定它更好,但是:)

>>> import struct
>>> struct.pack('>L', 0x31323334)
'1234'

Not sure it's better, but :)

>>> import struct
>>> struct.pack('>L', 0x31323334)
'1234'
千笙结 2024-12-31 03:25:28

我不认为你会比格式字符串然后解码更简单(需要 Python 2.6+):

>>> "{0:08x}".format(0x31323334).decode('hex')
'1234'

I don't think you'll get simpler than a format string and then a decode (needs Python 2.6+):

>>> "{0:08x}".format(0x31323334).decode('hex')
'1234'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文