Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("hello")
- def brgr():
- print("burger")
- print("----------------")
- user_choice()
- def frys():
- print("fries")
- print("----------------")
- user_choice()
- def user_choice():
- print("A.burger","B.fries","\n input capital letter to choose")
- choice = input(">").lower()
- if choice == "a":
- brgr()
- elif choice == "b":
- frys()
- user_choice()
Add Comment
Please, Sign In to add comment