>> print '-6ren">
gpt4 book ai didi

python - 将 "foo"转换为 "\x66\x6f\x6f"的最佳方法

转载 作者:太空宇宙 更新时间:2023-11-04 06:52:24 25 4
gpt4 key购买 nike

我正在寻找一种方法将字符串转换为 Python 中的转义十六进制表示形式,例如“foo” 变为 “\x66\x6f\x6f”

最佳答案

使用 hex 内置函数和生成器表达式:

>>> print ''.join('\\'+hex(ord(char))[1:] for char in 'foo')
\x66\x6f\x6f

关于python - 将 "foo"转换为 "\x66\x6f\x6f"的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27731094/

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