i am new to python and i need to read numbers from a text file and pass those in order into a list here is what i came up with :
liste = []
with open("MDATX3.014") as fa:
lines = fa.readlines()
for line in lines:
words = line.split()
for word in words:
liste.append(word)
print(liste)
