# You all must enjoy what your mother cooks.
# Let's build a program that will help your mother decide what to cook for breakfast, lunch and dinner.
# Ready to start.
''' Task 1: Whats Cooking'''
# Write a menu based program for your mother, which will help her decide what needs to be cooked for breakfast, lunch and dinner.
# Once the decision is made, an announcement for the same should be displayed on the screen
choice = int(input("Hello Mother! What meal do you want to cook?\n1-Breakfast\n2-Lunch\n3-Dinner"))
if choice == 1:
spec=int(input("What do you want to cook?\n1-Pancakes\n2-Cereal"))
if spec == 1:
print("\nYou will have pancakes today for breakfast.")
elif spec == 2:
print("\nYou will have cereal today for breakfast.")
elif choice == 2:
spec=int(input("What do you want to cook?\n1-rice\n2-pasta"))
if spec == 1:
print("\nYou will have rice today for lunch.")
elif spec == 2:
print("\nYou will have pasta today for lunch.")
elif choice == 3:
spec=int(input("What do you want to cook?\n1-pizza\n2-Quesadilla"))
if spec == 1:
print("\nYou will have pizza today for dinner.")
elif spec == 2:
print("\nYou will have quesadillas today for dinner.")
else:
print("Enter a choice above.")
''' Great!. Awesome!! Your mother must be really proud of you.'''
To embed this project on your website, copy the following code and paste it into your website's HTML: