Here is my code, what I'm having problems with is taking values from a 10 field file (scores.dat) and putting them into a list. How would i go about this?
def main():
fileIn = open( "scores.dat", "r")
lineIn = fileIn.readline()
while len(lineIn) != 0:
print lineIn
lineIn = fileIn.readline()
parse(lineIn)
main()