當前位置:成語大全網 - 新華字典 - 如何用python讀取json文件裏指定的數據

如何用python讀取json文件裏指定的數據

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}')