Skip to content
Permalink
Browse files
comment
  • Loading branch information
ryklovae committed Oct 8, 2020
1 parent 1117b85 commit bd014a6537ab0efac3a4e37cc2ffb760ba2244ca
Showing 1 changed file with 5 additions and 5 deletions.
@@ -75,27 +75,27 @@ def starter():

print(paragraph10)
print("<plan> for details of the plan\n"
"<continue>")
"<c> to continue")

while True:
enter = input("").lower()
if enter == "plan":
print(paragraph12)
print("<a> for details of the special place\n"
"<continue>")
"<c> to continue")
while True:
enter = input("").lower()
if enter == "a":
print(paragraph_special_place)
print("<continue>")
elif enter == "continue":
print("<c> to continue")
elif enter == "c":
# x = True
break
else:
print("I don't understand, Please enter again:")
# if x:
# break
elif enter == "continue":
elif enter == "c":
break
else:
print("I don't understand, Please enter again:")

0 comments on commit bd014a6

Please sign in to comment.