Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. def mainMenu():
  2. print("1. option 1")
  3. print("2. option 2")
  4. print("3. Quit")
  5. try:
  6. selection=int(input("Enter choice: "))
  7. if selection==1:
  8. option1()
  9. elif selection==2:
  10. option2()
  11. elif selection==3:
  12. exit
  13. else:
  14. print("Invalid choice. Enter 1-3")
  15. mainMenu()
  16. except ValueError:
  17. print("Invalid choice. Enter 1-3")
  18.  
  19. def option1():
  20. print("test 1")
  21. mainMenu()
  22.  
  23. def option2():
  24. print("test 2")
  25. mainMenu()
  26.  
  27.  
  28. def exit():
  29. print("test 3")
  30. mainMenu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement