wow this was complete garbage!
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
########################################################
|
||||
# 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()
|
||||
Reference in New Issue
Block a user