Skip to content
Permalink
Browse files
typing git comming in the command line makes you edit a message like …
…i am doing now
  • Loading branch information
masudm6 committed Oct 1, 2020
1 parent 4dacaef commit 10329503b16f272a808b4c4639b3e0b88871581a
Showing 1 changed file with 25 additions and 2 deletions.
27 main.py
@@ -3,6 +3,8 @@
sphinx story
is good
choice = input("Enter choice:\nA = []\nB = []\nC = []\n->")
'''


@@ -11,7 +13,6 @@ def start():

while loop == True:


difficulty = input("Enter Difficulty:\nA = EASY\nB = MEDIUM\nC = HARD\n->")
if difficulty == "a" or difficulty == "A":
print("You have selected EASY")
@@ -25,5 +26,27 @@ def start():
else:
print("Please enter a valid option.")


# Main block
start()
start()

loop = True
while loop == True:

print("You are reading a magazine. The phone rings.")
choice = input("Enter choice:"
"\nA = [Continue reading the magazine]"
"\nB = [Inspect the room]"
"\nC = [You pick up the phone]"
"\n->")
if choice == "a" or choice == "A":
print("You have selected A")
loop = False
elif choice == "b" or choice == "B":
print("You have selected B")
loop = False
elif choice == "c" or choice == "C":
print("You have selected C")
loop = False
else:
print("Please enter a valid option.")

0 comments on commit 1032950

Please sign in to comment.