gpt4 book ai didi

python - 将 Python 字符串转换为其 ASCII 表示形式

转载 作者:太空狗 更新时间:2023-10-29 22:11:58 24 4
gpt4 key购买 nike

如何将 Python 中的字符串转换为其 ASCII 十六进制表示形式?

示例: 我想要结果 '\x00\x1b\xd4}\xa4\xf3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'001bd47da4f3 中。

最佳答案

>>> text = '\x00\x1b\xd4}\xa4\xf3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'.rstrip('\0')
>>> print "".join("%02x" % ord(c) for c in text)
001bd47da4f3

根据 martineau 的评论,这是 Python 3 的方式:

>>> "".join(format(ord(c),"02x") for c in text)

关于python - 将 Python 字符串转换为其 ASCII 表示形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3850531/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com