gpt4 book ai didi

python - 如何在不使用 json 库或没有任何其他库的情况下读取 json 文件到字典或列表中?

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

我有一个 JSON 文件,我需要在不使用和库的情况下将它读入字典或列表。这是我的文件内容。

{
"101":"Break and Enter Commercial",
"102":"Break and Enter Residential/Other",
"103":"Vehicle Collision or Pedestrian Struck (with Fatality)",
"104":"Vehicle Collision or Pedestrian Struck (with Injury)"
}

这是我的尝试

def read_codes(filename):
jsonData = {}
# empty list to append to it later
file = open(filename, "r")
for key in file:
print(key)
return jsonData
print(read_codes('codes.json'))

最佳答案

这样的方式呢:

with open(file) as f:
your_dict = eval(f.read().replace('\n', ''))

关于python - 如何在不使用 json 库或没有任何其他库的情况下读取 json 文件到字典或列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60716314/

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