std={'学号':1,'姓名': '张三', 'age':30, 'python':60} 将std写入文件std.txt中。
时间: 2024-01-09 18:04:18 浏览: 116
将数据写入txt中
5星 · 资源好评率100%
你可以使用Python中的文件操作来实现这个功能,具体代码如下:
```
import json
std = {'学号': 1, '姓名': '张三', 'age': 30, 'python': 60}
# 将字典转为JSON字符串
std_str = json.dumps(std)
# 将JSON字符串写入文件
with open('std.txt', 'w', encoding='utf-8') as f:
f.write(std_str)
```
这样就将 `std` 字典写入了名为 `std.txt` 的文件中。
阅读全文