上述代码with open("data.txt", "w") as ff.write("{}\t{}\t{}\n".format(stu[0], stu[1], stu[2])): 好像有问题
时间: 2023-07-07 08:35:03 浏览: 76
格式好像不对的txt测试文件
非常抱歉,是我写错了,这里的代码应该是:
```
with open("data.txt", "w") as f:
# 写入表头
f.write("sno\tsname\tsage\n")
# 循环输入学生信息
stext = input() or "End"
while stext != "End":
stu = stext.split(",")
# 将学生信息写入文件
f.write("{}\t{}\t{}\n".format(stu[0], stu[1], stu[2]))
stext = input() or "End"
```
感谢您的指正,希望我的回答能够帮到您。
阅读全文