// resources

Resources

// Code Example
dict_modifying.py
Modifying a dict — direct assignment, update, setdefault, pop, popitem, clear. Methods that write, and the one mistake …
16 downloads 06 May 2026 → How to Modify a Dict
[ download ]
// Code Example
dict_inspection.py
Getting information from a dict — in, len, keys, values, items, copy. Reading without changing, and the copy trap that …
16 downloads 06 May 2026 → Getting Information From a Dict
[ download ]
// 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 …
16 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.
16 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…
16 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…
16 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 ]