基本上我試圖完成一個讀取文件。我製作了「make」文件,它將生成10個隨機數並將其寫入文本文件。這裏是我迄今爲止的「讀」文件...從Python列表中添加數字
def main():
infile = open('mynumbers.txt', 'r')
nums = []
line = infile.readline()
print ('The random numbers were:')
while line:
nums.append(int(line))
print (line)
line = infile.readline()
total = sum(line)
print ('The total of the random numbers is:', total)
main()
我知道這是不完整的,我仍然在這一個初學者,這是我第一次介紹了計算機編程或Python。基本上我必須使用循環來收集mynumbers.txt中列出的所有數字的總和。任何幫助將不勝感激。這一直在推動我一堵牆。
他/她是初學傢伙,請給他們一些鬆懈! – gravetii