我在逐行读取文件时生成一些数字的总和有些麻烦。我想从单独的文件计算总和而不将数字保存为列表。对此有简单的命令吗?我的代码如下所示:
def imput(filename):
with open(filename, 'r') as f: #open the file
for line in f:
input('sample.txt')`
文件'sample.txt'由数字1,2,4,6,8
组成,当我使用print函数时,我得到:
print(line)
1
2
4
6
8