Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. print("Let's make some pancakes!")
  2. print("Check what you have in the kitchen.")
  3. ingredients = input("What ingredients do you have? >")
  4. if ingredients == "flour, butter, eggs":
  5. print("Great, you have everything. Let's get baking!")
  6. elif ingredients == "flour, butter":
  7. print("You need some eggs as well!")
  8. elif ingredients == "butter, eggs":
  9. print("You need some flour, too!")
  10. elif ingredients == "flour, eggs":
  11. print("You want to get some butter, too!")
  12. else:
  13. print("It looks like you'll need to buy all the ingredients- flour, butter and eggs!")
  14. baking = input("Do you know the recipe? >")
  15. if baking == "Yes" or baking == "yes":
  16. print("Awesome, go ahead and bake!")
  17. if baking == "no" or baking == "No":
  18. print("Let me help you!")
  19. print("Mix all the ingredients in a bowl and bake them one by one in a frying pan. Voila!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement