gpt4 book ai didi

Python - 将数据附加到文件,Line.split

转载 作者:行者123 更新时间:2023-12-01 04:51:10 25 4
gpt4 key购买 nike

在 Python 中,我的任务是创建一个全新的文件来存储高分。该程序应要求输入您的姓名、日期和高分。 每个值应以逗号分隔。

这是我当前的代码:

Name=input('What is your name:')
Date=input('What is the date:')
Score=input('What was your high score:')

myFile=open('Scores.txt','wt')
myFile.write(Name)
myFile.write(Date)
myFile.write(Score)
myFile.close()

myFile=open('Scores.txt','r')
line=myFile.readline()
line=line.split(',')
myFile.close()

我在尝试使用逗号分隔每个值时遇到问题。我究竟做错了什么?在文本文件中,未添加逗号,因此所有值都彼此相邻。

谢谢

最佳答案

更紧凑的版本:

Name=input('What is your name:')
Date=input('What is the date:')
Score=input('What was your high score:')

with open('Scores.txt','w+') as f:
f.write(','.join([Name, Date, Score]))

with open('Scores.txt','r') as f:
for line in f:
values = line.split(',')

with语句将自动关闭文件。

关于Python - 将数据附加到文件,Line.split,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28441810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com