gpt4 book ai didi

python - 对于文件 json 中的键和值

转载 作者:太空宇宙 更新时间:2023-11-04 05:59:18 25 4
gpt4 key购买 nike

文件 json

{
"102": "868",
"103": "8648",
"104": "868",
"105": "8468",
"1026": "8468",
"107": "8648",
"108": "85468",
}

我想循环并获取键和值

最佳答案

looool [在 python3.7 中]

import json
with open(path_to_your_json_file) as f:
d = json.load(f)
for k in d:
print(k, d[k])

关于python - 对于文件 json 中的键和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58289190/

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