Checking values
Great! Your shopping list is working. Let's quickly count how many items we have in our shopping list before building the final scaled version.
Questo esercizio fa parte del corso
Introduction to Python for Developers
Istruzioni dell'esercizio
- Create a variable called
items_to_buystarting at 0, then increment it by 1 for each ingredient in yourshopping_list. - Print both the
shopping_listand the total number ofitems_to_buy.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Count how many items to buy
items_to_buy = ____
for item in shopping_list:
items_to_buy ____ 1
# Display results
____
____