Skip to content
Permalink
Browse files
updatedd
  • Loading branch information
rajaa20 committed Oct 8, 2020
2 parents cb42252 + bd014a6 commit 07efe85a9f1ee7cae858b2567caecc1ec13e0f52
Showing 1 changed file with 17 additions and 9 deletions.
@@ -16,8 +16,16 @@ def starter():
"<Chris>\n"
"<Ray> \n"
"<LP> \n"
"<c><Continue> ")
"<c> <Continue> ")

<<<<<<< HEAD
=======
print("This is working ")
print("this is working via pycharm")
print("working for adam ")
print("Working for Eliska")

>>>>>>> bd014a6537ab0efac3a4e37cc2ffb760ba2244ca

while True:
enter = input("").lower()
@@ -39,7 +47,7 @@ def starter():
"\n"
"<a>an old Ford Transit van\n"
"<b>an old army style Range-Rover\n"
"<c>Continue")
"<c> Continue")

while True:
enter = input("").lower()
@@ -55,42 +63,42 @@ def starter():
print(paragraph7)
print('<a>small banks\n'
'<b>bigger plan\n'
'<c>Continue>')
'<c> Continue>')

while True:
enter = input("").lower()
if enter == "a":
print(paragraph8)
elif enter == "b":
print(paragraph9)
elif enter == "continue":
elif enter == "c":
break
else:
print("I don't understand, Please enter again:")

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 07efe85

Please sign in to comment.