我有一个由三列组成的 txt 文件,第一列是整数,第二列和第三列是浮点数。我想对每个浮点数进行计算并按行分隔。我的伪代码如下:
def first_function(file):
pogt = 0.
f=open(file, 'r')
for line in f:
pogt += otherFunction(first float, second float)
f.close
另外,“for line in f”是否可以保证我的 pogt 将是我 otherFunction 对 txt 文件中所有行的计算的总和?