gpt4 book ai didi

python - 如何将字节类型转换为字典?

转载 作者:行者123 更新时间:2023-12-04 01:25:37 26 4
gpt4 key购买 nike

我有一个像这样的字节类型对象:

b"{'one': 1, 'two': 2}"

我需要使用 python 代码从中获取字典。我将其转换为字符串,然后转换为字典如下。
string = dictn.decode("utf-8")
print(type(string))
>> <class 'str'>
d = dict(toks.split(":") for toks in string.split(",") if toks)

但我收到以下错误:
------> d = dict(toks.split(":") for toks in string.split(",") if toks)
TypeError: 'bytes' object is not callable

最佳答案

您只需要ast.literal_eval .没有比这更美妙的了。除非您在字符串中专门使用非 Python dict 语法,否则没有理由弄乱 JSON。

# python3
import ast
byte_str = b"{'one': 1, 'two': 2}"
dict_str = byte_str.decode("UTF-8")
mydata = ast.literal_eval(dict_str)
print(repr(mydata))

查看答案 here .它还详细说明了如何 ast.literal_evaleval 更安全.

关于python - 如何将字节类型转换为字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49184578/

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