discovered multiline strings

This commit is contained in:
gabe venberg 2021-03-01 15:09:57 -06:00
parent 8368c858e8
commit 81fe349a23

View file

@ -14,7 +14,12 @@ for quizNum in range(35):
quizFile = open("./quizes/"+quizName, 'w')
#writing the header.
quizFile.write("= US Captials Quiz\nName:\nDate:\n\n")
quizFile.write("""= US Captials Quiz
Name:
Date:
""")
#shuffle order of states
states = list(capitals.keys())