gpt4 book ai didi

python - 如何读取文本文件并转换为字典?

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

我正在尝试读取包含以逗号分隔的字典的文本文件,并将其转换为字典列表。

我怎样才能用Python做到这一点?

我尝试读取为 json 文件或使用 split 方法

{
"id": "b1",
"name": "Some Name"
},
{
"id": "b2",
"name": "Another Name"
},
....

结果应该是:

[ {"id" : "b1", "name" : "Some Name"} , {"id" : "b2", "name" : "Another Name"}, .... ]

最佳答案

如果您的文件不太大,您可以执行以下操作:

import json

with open('filename.txt', 'r') as file:
result = json.loads('[' + file.read() + ']')

关于python - 如何读取文本文件并转换为字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54384791/

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