如何读取 json 文件?
时间: 2023-10-26 13:49:58 浏览: 65
C/C++将json文件读取到内存的接口使用demo
你可以使用 Python 中 json 模块中的 load() 或 dumps() 方法来读取 json 文件。例如,使用以下代码读取名为 data.json 的文件:
import json
with open('data.json') as f:
data = json.load(f)
或者,使用以下代码将 Python 字典写入名为 data.json 的文件:
import json
data = {
'name': 'John',
'age': 30,
'city': 'New York'
}
with open('data.json', 'w') as f:
json.dump(data, f)
阅读全文