Fixed function using the wrong dictionary on iteration

This commit is contained in:
TiagoRG 2022-11-14 10:09:40 +00:00
parent 5ba131d277
commit ba9a309bde
1 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,5 @@
import re import re
# Constantes para indexar os tuplos: # Constantes para indexar os tuplos:
NAME, DATE, OPEN, MAX, MIN, CLOSE, VOLUME = 0, 1, 2, 3, 4, 5, 6 NAME, DATE, OPEN, MAX, MIN, CLOSE, VOLUME = 0, 1, 2, 3, 4, 5, 6
@ -41,7 +40,7 @@ def loadStockFile(filename):
def totalVolume(lst): def totalVolume(lst):
totVol = {} totVol = {}
# Complete ... # Complete ...
for tup in totVol: for tup in lst:
if tup[NAME] not in totVol: if tup[NAME] not in totVol:
totVol[tup[NAME]] = tup[VOLUME] totVol[tup[NAME]] = tup[VOLUME]
else: else: