25 lines
705 B
Python
25 lines
705 B
Python
########################################################
|
|
# MIGRATION NOTE: wow yeah you can tell this is from a #
|
|
# programming class #
|
|
########################################################
|
|
|
|
def cooking():
|
|
print("Meal planner")
|
|
print()
|
|
print("1. Chicken curry ")
|
|
print("2. Veggie lasagne")
|
|
print("3. Burger and salad")
|
|
print()
|
|
print("Which of these meals is your favourite? (1, 2 or 3) ")
|
|
answer = input()
|
|
if answer == "1":
|
|
print("Chicken curry coming up")
|
|
elif answer == "2":
|
|
print("Veggie lasagne coming up")
|
|
else:
|
|
print("Burger and salad coming up!")
|
|
print("Enjoy!")
|
|
|
|
|
|
|
|
cooking() |