Code:
def save():
try:
saves.append(str(level))
saves.append(str(stre))
saves.append(str(spd))
saves.append(str(hp))
saves.append(str(maxhp))
saves.append(str(exp))
saves.append(str(maxexp))
saves.append(str(gp))
saves.append(str(sword))
save = open('gamesave.txt', 'r+')
for s in saves:
save.write(s)
save.write('\n')
saves.remove(s)
print s
print "Save successful."
save.close()
except ValueError: print "Save unsuccessful."
The attachment shows this. The top line is the saves list. The numbers below it are the ones that are written to the text file.
Anyone know why it won't get all the way through the list?
[link removed]
Comment