python从txt文件中读取保存的字典
时间: 2023-10-13 07:05:03 浏览: 169
python将txt文件读取为字典的示例
5星 · 资源好评率100%
可以使用以下代码从txt文件中读取保存的字典(假设字典以json格式保存):
```python
import json
with open('dictionary.txt', 'r') as f:
dictionary = json.load(f)
print(dictionary)
```
其中,`dictionary.txt`是保存字典的文件名。`json.load()`函数将读取文件并将其解析为字典对象。最后,我们将字典打印出来以确认读取是否成功。
阅读全文