gpt4 book ai didi

python:将json类型的字符串列表转换为字典列表

转载 作者:行者123 更新时间:2023-11-30 23:46:07 25 4
gpt4 key购买 nike

我有一个文件,其中每一行都是 json 字符串。我将此文件加载到字符串列表中。有没有办法将所有这些字符串转换为字典列表? json.loads() 只能逐行转换。谢谢

<小时/>

我想出了一种方法:L = list(顺序变量的表达式)

最佳答案

这应该可以完成工作:

result = None
with open("filename", 'r') as fh:
result = [json.loads(line) for line in fh]

或者您可以使用 map 而不是 @JeffS 所说的列表推导式

result = None
with open("filename", 'r') as fh:
result = map(json.loads, fh)

关于python:将json类型的字符串列表转换为字典列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9170944/

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