Daily Python
Day 9Python~35 min
Tuples & Sets
Immutable sequences and unique collections
Track progress0/15 days
What you'll learn
tuplesetunionintersectiondifference
- Unpack tuples and use set operations
- Compare recipe vs pantry ingredients
Lesson & examples
Read the code, then the explanation — try changing values before the project.
Set operations
a = {"flour", "sugar", "butter"}
b = {"sugar", "eggs"}
print(a - b) # missing from b
print(a & b) # in common