数字のリストを含む txt ファイルを python にインポートしようとしています。ファイル内の数値の平均と数値の標準偏差を取得することを想定しています。私のスクリプトは間違っていますが、誰かが正しい方法を教えてくれますか?
from sys import argv
script, filename = argv
txt = open(filename)
for line in txt:
total = 0
length = 0
amount = float(line)
total += amount
length = length + 1
average = total/length
print average