H3NL3Y

Untitled

Nov 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. def menu():
  2.   print('Welcome to MB14 Menu')
  3.   menuChoice = input('''
  4.  1. List of people
  5.  2. Food menu
  6.  3. logout
  7.  >>> ''')
  8.  
  9.   if menuChoice == '1':
  10.     listofpeople()
  11.   elif menuChoice == '2':
  12.     foodmenu()
  13.   elif menuChoice == '3':
  14.     logout()
  15.  
  16.  
  17. def listofpeople():
  18.   print('This is the list of people')
  19.   menu()
  20.  
  21. def foodmenu():
  22.   print('This is food menu')
  23.   menu()
  24.  
  25. def logout():
  26.   print('LOGOUT!!!')
  27.   menu()
  28.  
  29.  
  30. menu()
Add Comment
Please, Sign In to add comment