我将如何使用循环在下面做同样的事情来使程序更高效而不是蛮力?
我正在尝试从文件中读取值,将它们转换为浮点数,取前三个数字的平均值,将平均值写入一个新文件,然后继续接下来的三个数字。
例子:
原始文件:
20.1
18.2
24.3
16.1
45.5
42.3
46.1
43.8
44.4
新文件:
20.87
19.53
28.63
34.63
44.63
44.07
44.77
这是我的代码:
def smooth(rawDataFilename, smoothDataFilename):
aFile = open(rawDataFilename, 'r')
newFile = open(smoothDataFilename, 'w')
num1 = float(aFile.readline())
num2 = float(aFile.readline())
num3 = float(aFile.readline())
num4 = float(aFile.readline())
smooth1 = (num1 + num2 + num3) / 3
smooth2 = (num2 + num3 + num4) / 4
newFile.write(str(format(smooth1, '.2f')))
newFile.write('/n')
newFile.write(str(format(smooth2, '.2f')))
aFile.close()
newFile.close()