I have two strings that i want to put into a txt file but when I try and write then, it's only on the first line, I want the string to be on separate lines how do I do so?
Here is the writing part of my code btw:
saveFile = open('points.txt', 'w') saveFile.write(str(jakesPoints)) saveFile.write(str(alexsPoints)) saveFile.close if jakesPoints was 10 and alexsPoints was 12 then the text file would be
1012 but i want to to be
10 12