用Python把字典写到文件,从文件到字典
时间: 2024-04-23 09:27:31 浏览: 75
字典文件
4星 · 用户满意度95%
可以使用Python的`json`模块来将字典写入文件并从文件中读取字典。下面是一个示例代码:
将字典写入文件:
```python
import json
data = {"name": "John", "age": 30, "city": "New York"}
# 将字典写入文件
with open("data.json", "w") as json_file:
json.dump(data, json_file)
```
从文件中读取字典:
```python
import json
# 从文件中读取字典
with open("data.json", "r") as json_file:
data = json.load(json_file)
print(data) # 输出: {'name': 'John', 'age': 30, 'city': 'New York'}
```
在上述代码中,我们使用`json.dump()`将字典`data`写入名为"data.json"的文件。然后使用`json.load()`从文件中读取字典数据,并将其存储在变量`data`中。最后,我们打印出读取到的字典数据。
阅读全文