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.
Questo esercizio fa parte del corso
Introduction to Python for Developers
Istruzioni dell'esercizio
- Create a boolean variable called
has_pastaand set it toTrueto indicate you already have pasta at home. - Create a boolean variable called
has_garlicand set it toFalseto indicate you need to buy garlic.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Track if you have pasta at home
has_pasta = ____
# Track if you have garlic
has_garlic = ____
print(has_pasta)
print(has_garlic)