Advertisement
Guest User

Untitled

a guest
May 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. #Everything needed for summer exam
  2. from time import sleep
  3. while True:
  4. print("What would you like for dinner?")
  5. print("1. Chicken Curry")
  6. print("2. Shephards Pie")
  7.  
  8. def chickencurry():
  9. print("Soz mah bro, I dont got no chicken")
  10. def shephardspie():
  11. print("yeeeas, i luv da pie. nice one may bro")
  12.  
  13. choice=input("Type the number!")
  14.  
  15. if choice == "1":
  16. chickencurry()
  17. elif choice == "2":
  18. shephardspie()
  19. break
  20. sleep(1)
  21. else:
  22. print("I do not get you fam")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement