1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to Python for Developers

Connected

Exercise

Working with booleans

As you build your recipe scaler project, you need to track which ingredients you already have at home versus which ones you need to buy at the store. Booleans are perfect for storing this yes/no information. You've already created variables for some ingredients in your recipe, and now you'll add boolean variables to track their availability.

Instructions

100 XP
  • Create a boolean variable called has_pasta and set it to True to indicate you already have pasta at home.
  • Create a boolean variable called has_garlic and set it to False to indicate you need to buy garlic.