// resources

Resources

// Code Example
dict_iteration.py
Iterating over a dict — keys, values, and pairs. The three patterns, when to use each, and how to build a new dict from…
16 downloads 06 May 2026 → Going Through Every Key and Value
[ download ]
// Code Example
dict_nested.py
Nested dicts — one structure, all the data. Creating, accessing with two keys, looping with items(), modifying inner di…
[ download ]
// Exercise
tip_calculator.py
Tip Calculator — bill amount, service rating, dict lookup, tip and total calculation. A dict doing exactly what dicts a…
16 downloads 06 May 2026 → Dict Mini Project — Tip Calculator
[ download ]
// Exercise
shopping_list_2.py
Shopping List upgraded — items with quantity and price, nested dict per entry, checkout with total. The list you built …
17 downloads 06 May 2026 → Dict Mini Project — Shopping List
[ download ]
// Exercise
pet_shop.py
Pet Shop — nested dicts, view all, search by name, buy and mark as sold. A nested dict doing real inventory work.
17 downloads 06 May 2026 → Dict Mini Project — Pet Shop
[ download ]
// Other
dict_mistakes.py
8 mistakes almost every beginner makes with dicts. Wrong way, error, right way — all in one file.
17 downloads 06 May 2026 → Common Dict Mistakes
[ download ]
// Cheatsheet
Lists — The Full Picture
Dicts — The Full Picture. Creating, reading, modifying, inspecting, iterating, nested dicts, safe access patterns, and …
17 downloads 06 May 2026 → Lists — The Full Picture
[ download ]
// Cheatsheet
Dicts — The Full Picture
Everything you've learned about dicts — in one place. Creating, reading, modifying, inspecting, iterating, nested dicts…
17 downloads 06 May 2026 → Dicts — The Full Picture
[ download ]
// Achievement
dictionaries_complete_medal.stl
You finished the Dictionaries chapter. Download, print, and keep it. You earned it.
17 downloads 06 May 2026 → This One's Yours — Dicts
[ download ]
// Code Example
tuple_usage.py
Tuples in practice — indexing, slicing, looping, unpacking, multiple return values, dict keys, and converting between t…
17 downloads 06 May 2026 → Using Tuples in Your Code
[ download ]
// Exercise
temperature_converter_2.py
Temperature Converter — conversion formulas stored as tuples, looked up by mode, unpacked and applied. A tuple doing ex…
[ download ]
// Code Example
set_usage.py
Sets in practice — add, remove, discard, membership checking, union, intersection, difference, and the patterns that ma…
17 downloads 06 May 2026 → Using Sets in Your Code
[ download ]
// Exercise
attendance_tracker.py
Mark students present one by one. Enrolled set, present set, absent via set difference. add(), in, and one line that do…
[ download ]
// Code Example
list_set_comprehensions.py
List and set comprehensions — transform, filter, and deduplicate in one line. Square brackets for lists, curly braces f…
[ download ]
// Code Example
dict_comprehensions.py
Dict comprehensions — build from a list, transform an existing dict, filter key-value pairs, swap keys and values, and …
16 downloads 06 May 2026 → Building Dicts the Short Way
[ download ]