python文件写入字典
时间: 2023-11-28 10:44:21 浏览: 93
Python如何把字典写入到CSV文件的方法示例
5星 · 资源好评率100%
在Python中,我们可以使用open函数打开一个文件,然后使用json模块将字典数据写入文件中。具体步骤如下:
1. 打开文件,使用'w'模式表示写入文件,如果文件不存在则会创建一个新文件。
```python
with open('data.json', 'w') as f:
```
2. 将字典数据转换为json格式的字符串。
```python
import json
data = {'name': 'Alice', 'age': 25}
json_str = json.dumps(data)
```
3. 将json格式的字符串写入文件中。
```python
with open('data.json', 'w') as f:
json.dump(json_str, f)
```
完整代码如下:
```python
import json
data = {'name': 'Alice', 'age': 25}
json_str = json.dumps(data)
with open('data.json', 'w') as f:
json.dump(json_str, f)
```
阅读全文