Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. #menu
  2. menu = """
  3. Menu
  4. JahBurger
  5. JahFries
  6. JahFlurry
  7. BigJah
  8. JahPods
  9. """
  10. print menu
  11.  
  12.  
  13. #Question and input
  14. print "Welcome to JahBurger, home of the JahBurger, can I take your order? Please choose from the menu above.",
  15. jahorder = raw_input()
  16.  
  17.  
  18. #Spacing between question and output
  19. print ""
  20. print ""
  21.  
  22.  
  23. #If statements to determine what was ordered
  24.  
  25. if jahorder == "JahBurger": #JahBurger
  26. print "Ok so you'll get one JahBurger"
  27. elif jahorder == "JahFries": #JahFries
  28. print "Ok so you'll get one order of JahFries"
  29. elif jahorder == "JahFlurry": #JahFlurry
  30. print "Ok so you'll get one JahFlurry"
  31. elif jahorder == "BigJah": #BigJah
  32. print "Ok so you'll get one BIG BOY JAH"
  33. elif jahorder == "JahPods": #JahPods
  34. print "Ok so you'll get some JahPods"
  35. else:
  36. print "Sorry sir, %s machine broke." %jahorder
  37.  
  38. print "Hope you enjoy your day sir."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement