python 中,如果指定文件内容是 json 格式的数据,可以通过 json
模块的 load
方法读取到字典(dict)对象。
示例
import json
with open("data.json", 'r') as load_f:
load_dict = json.load(load_f)
print(load_dict)
python 中,如果指定文件内容是 json 格式的数据,可以通过 json
模块的 load
方法读取到字典(dict)对象。
import json
with open("data.json", 'r') as load_f:
load_dict = json.load(load_f)
print(load_dict)