如何用python读取json文件里指定的数据
发布网友
发布时间:2022-04-19 15:06
我来回答
共1个回答
热心网友
时间:2022-04-06 15:26
import json
with open('who.json', 'r') as f:
data = json.load(f)
dependencies = data['dependencies']
for k, v in dependencies.iteritems():
print(f'{k}@{v}')
追问大佬,请问如何对不同目录下的多个who.json进行读取呢?
追答把所有目录名放到列表里,遍历列表重复上述操作。