Get startedGet started for free

Working with sets

While building your recipe scaler, you decide to create a shopping list from multiple recipes. You've been collecting ingredients in a list called all_ingredients. Since the same ingredients appear in different recipes, their names appear more than once in the list. You want to create a set to see exactly how many unique ingredients you need to buy. The all_ingredients list has already been created for you.

This exercise is part of the course

Introduction to Python for Developers

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Convert the all_ingredients list to a set
unique_ingredients = ____

print(unique_ingredients)
Edit and Run Code