gpt4 book ai didi

Python 等同于 echo -e?

转载 作者:太空宇宙 更新时间:2023-11-03 12:25:22 25 4
gpt4 key购买 nike

是否有与 echo -e 等效的 python?

换句话说,是否有内置函数将 r"\x50\x79\x74\x68\x6f\x6e" 转换为 "Python" python ?

编辑我添加了“r”前缀,以确保每个人都明白我不希望 python 解释器转换它。相反,我想将该 24 个字符的字符串转换为 6 个字符的字符串。

最佳答案

我刚刚发现的正确方法是

>>> a = r"\x50\x79\x74\x68\x6f\x6e"
>>> print a
\x50\x79\x74\x68\x6f\x6e
>>> a.decode('string_escape')
'Python'

确保在测试时转义反斜杠(或使用原始的“r”前缀)!

引用资料:

关于Python 等同于 echo -e?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7277225/

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