sav = []
def fileKeep(sav):
classA = open("classA", "r")
for line in classA:
sav.append(line.split())
file.close()
return
fileKeep(sav)
This is the end of my code. I get a File Not Found error that I do not get anywhere else, even though I have used the file nearer to the beginning of the code as well. Any assistance is welcome, thanks.