python读写json文件
1. 新建json文件
- 打开记事本,重命名为
.json
后缀
使用的样例如下,注意看json文件格式:
1 |
|
2. 用python打开json文件
- json模块为python自带,不需要安装
load
可以把json文件加载出来dict
可以把json格式变为字典1
2
3
4
5
6
7
8
9
10
11
12
13
14
15import json
# fill path
file_path = r'json_test\my_json_file.json'
# open json file
with open(file_path, 'r') as file:
# load json data
data = json.load(file)
print(data)
# convert json to dictionary
data_dic = dict(data)
print(data_dic)
3. 使用json数据
1 |
|
4. 改变json数据内容
1 |
|
5. 把文件变回json格式
- 用
dumps
1
2# convert the update values back to json format
update_json = json.dumps(data)
6. 把更新后的json文件写入为新的json文件
1 |
|
7. 整体代码
1 |
|
9. 新建的json文件一览
python读写json文件
http://example.com/2024/07/21/python读写json文件/