Gribouillis
Posting Maven
3,101 posts since Jul 2008
Reputation Points: 1,130
Solved Threads: 761
Skill Endorsements: 11
uhhhh... on a different computer
No problem, we can wait.
do not know how to go to different def statement,
As in:
def printMenu():
print('1: Option 1\n2: Option 2\n3: exit')
def menu():
answer = ""
while(1):
printMenu()
answer = input("Choose: ")
if (answer == "1"):
#do stuff
print("option 1")
elif (answer=="2"):
#do stuff for answer 2
print("option 2")
elif (answer=="3"): break
else: print('Invalid command')
menu()
Lucaci Andrew
Practically a Master Poster
649 posts since Jan 2012
Reputation Points: 91
Solved Threads: 91
Skill Endorsements: 12