Sets and Set Operations
Build sets and perform union, intersection, and difference.
Sets and Set Operations is a free Python Academy lesson on CoddyKit — lesson 3 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Python Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Introduction
Creating a Set
s = {1, 2, 2, 3}
print(s) # {1, 2, 3}
empty = set()
print(type(empty))add() and discard()
s = {1, 2, 3}
s.add(4)
s.discard(9) # safe
print(s)Membership Testing
s = {1, 2, 3}
print(2 in s)
print(9 in s)Union |
a = {1, 2, 3}
b = {3, 4, 5}
print(a | b)Intersection &
a = {1, 2, 3}
b = {2, 3, 4}
print(a & b)Difference -
a = {1, 2, 3}
b = {2, 3, 4}
print(a - b)Symmetric Difference ^
a = {1, 2, 3}
b = {2, 3, 4}
print(a ^ b)Subset and Superset
a = {1, 2}
b = {1, 2, 3}
print(a <= b)
print(b >= a)frozenset
fs = frozenset([1, 2, 3])
d = {fs: 'value'}
print(d[fs])Set Comprehensions
evens = {x*2 for x in range(5)}
print(evens)Quick Check
Recap
Keep Going
Frequently asked questions
Is the “Sets and Set Operations” lesson free?
Yes — the full text of “Sets and Set Operations” is free to read here on the web, and the Python Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Python Academy course, upgrade to CoddyKit PRO.
What will I learn in “Sets and Set Operations”?
Build sets and perform union, intersection, and difference. You practise Python Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Python Academy?
No prior experience is required. Python Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “Sets and Set Operations” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Python Academy lesson?
Yes. Every Python Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Dictionary Basics
- Dictionary Methods
- Sets and Set Operations
- Dictionary Comprehensions