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.
This exercise is part of the course
Introduction to Python for Developers
Exercise instructions
- 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.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Count how many items to buy
items_to_buy = ____
for item in shopping_list:
items_to_buy ____ 1
# Display results
____
____