gpt4 book ai didi

python - python中bytes repr()的逆运算是什么?

转载 作者:行者123 更新时间:2023-12-04 02:11:12 24 4
gpt4 key购买 nike

a = b'\x00\x01'
ra = repr(a) # ra == "b'\\x00\\x01'"
assert invert_repr(ra) == a

invert_repr 的正确形式是什么? string_escape 和 unicode_escape?

最佳答案

使用 eval或等效的:

from ast import literal_eval
a = b'\x00\x01'
ra = repr(a)
assert literal_eval(ra) == eval(ra) == a # no error

ast.literal_eval is safer than eval .

关于python - python中bytes repr()的逆运算是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38180331/

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