python simplejson 读写一个文件
时间: 2023-09-28 15:04:25 浏览: 174
读写json文件
3星 · 编辑精心推荐
首先,需要安装 simplejson 库,可以使用以下命令进行安装:
```
pip install simplejson
```
然后,可以使用以下代码读取一个 JSON 文件:
```python
import simplejson as json
with open('example.json', 'r') as f:
data = json.load(f)
print(data)
```
其中,`example.json` 是要读取的文件名,`json.load()` 方法将 JSON 文件中的数据读取到 `data` 变量中。
如果要将数据写入 JSON 文件,可以使用以下代码:
```python
import simplejson as json
data = {
'name': 'John',
'age': 30,
'city': 'New York'
}
with open('example.json', 'w') as f:
json.dump(data, f)
```
其中,`data` 是要写入文件的数据,`json.dump()` 方法将数据写入 `example.json` 文件中。如果文件不存在,则会自动创建。
阅读全文