import json # 打开JSON 文件 with open('data.json') as f: data = json.load(f) # 打印读取的数据,可以看到读取的JSON数据被转换为Python字典对象 ...
確定! 回上一頁