this section of code is supposed to make a list containing the values of the second column in the text file, but it takes the second letter. anyone know what my problem is?
TEXTFILE
opi 60
kid 60
pou 60
ret 60
kai 60
bob 100
for line in lst:
line.split(' ')
fire.append(int(line[1]))
print(line[1])