※ 引述《PTT007 (優質單身好男人)》之銘言:
: 如果我有一個txt內容如下:
: 0.01
: 0.02
: 0.03
: 0.09
: 1.03
: 1.02
: 1.01
: 我想將 0.X 和 1.X 各自累加起來
: 輸出結果為 0.15 和 3.06
: 我目前的做法是
: number_of_line = len(txt) # txt總共幾行
: result = 0
: for i in range(2):
: for j in range(number_of_line):
: if i == int(current_row_value):
: result += current_row_value
: print result
: result = 0
: 但我這樣寫,資料量多的話就會跑很久
: 請問有其他較好的方法嗎
: 謝謝
txt = open("input.txt")
s = txt.readline() # 先讀一行進來
result1 = 0 # 一次就可以做完,loop兩次幹嘛?
result2 = 0
while s != '': # 檢查檔案尾
if s[0] == '0': # 如果你很確定只有 0 和 1 需要分開的話...
result1 += float(s)
else:
result2 += float(s)
s = txt.readline() # 進下一行
print(result1, result2)