Skip to content
Permalink
Browse files
added main py HELP THIS IS HARD
  • Loading branch information
beastelassi committed Oct 1, 2020
1 parent 05e80e1 commit 4dacaef6db3daf9e855bc39b16674d74ebba5e90
Showing 1 changed file with 29 additions and 0 deletions.
29 main.py
@@ -0,0 +1,29 @@
'''
sphinx story
is good
'''


def start():
loop = True

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")
loop = False
elif difficulty == "b" or difficulty == "B":
print("You have selected MEDIUM")
loop = False
elif difficulty == "c" or difficulty == "C":
print("You have selected HARD")
loop = False
else:
print("Please enter a valid option.")

# Main block
start()

0 comments on commit 4dacaef

Please sign in to comment.