python txt写入字典
时间: 2023-07-14 08:04:20 浏览: 104
python 字典有序并写入json文件过程解析
5星 · 资源好评率100%
可以使用Python的文件操作来将字典写入到txt文件中。下面是一个示例代码:
```python
def write_dict_to_txt(dictionary, filename):
with open(filename, 'w') as file:
for key, value in dictionary.items():
file.write(f"{key}: {value}\n")
```
这个函数接受两个参数,第一个参数是要写入的字典,第二个参数是要写入的文件名。函数会将字典中的键值对逐行写入到txt文件中,每行格式为"键: 值"。
你可以调用这个函数来将字典写入到txt文件中,例如:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
write_dict_to_txt(my_dict, 'output.txt')
```
这将把字典`my_dict`写入到名为`output.txt`的txt文件中。
阅读全文