// resources

Resources

// Exercise
password_strength_checker_2.py
Password Strength Checker upgraded — while True keeps asking, for checks every character. Flags reset on every attempt.…
[ download ]
// Exercise
hangman.py
Hangman — two players, one word. while keeps the game alive, two for loops handle display and guessing. continue skips …
[ download ]
// Exercise
banner.py
Banner — def in action. One function, consistent output, call it as many times as you need. "=" * len(title) fits the b…
26 downloads 04 May 2026 → DEF Mini Project — Banner
[ download ]
// Exercise
username_generator_2.py
Username Generator rewritten with parameters — no input() inside. Pass what changes, keep what stays. Default prefix in…
[ download ]
// Exercise
bmi_calculator_2.py
BMI Calculator rewritten with parameters — no input() inside. Pass weight and height, function calculates and prints. C…
[ download ]
// Exercise
username_generator_3.py
Username Generator with return — the value is free. Store it, print it directly, pass it to another function. Three way…
[ download ]
// Exercise
bmi_calculator_3.py
BMI Calculator with return — three functions, three jobs. Calculate, categorize, print. return connects them, each can …
[ download ]
// Exercise
bmi_calculator_4.py
BMI Calculator with error handling — get_input() validates, calculate_bmi() calculates, get_category() labels. Three fu…
[ download ]
// Exercise
shopping_list.py
shopping_list.py — A shopping list that lives in a loop. Add items, remove them safely, quit when done. append(), remov…
18 downloads 05 May 2026 → Lists Mini Project — Shopping List
[ download ]
// Exercise
grade_book.py
Grade Book — nested lists for three subjects, grade input, average per subject, overall average, and empty list protect…
18 downloads 05 May 2026 → Lists Mini Project — Grade Book
[ download ]
// Exercise
even_numbers.py
Even Numbers — collect 6 inputs, filter with a function, return a clean list. Modulo, append, and a function that doesn…
18 downloads 05 May 2026 → Lists Mini Project — Even Numbers
[ 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 ]
// Exercise
temperature_converter_2.py
Temperature Converter — conversion formulas stored as tuples, looked up by mode, unpacked and applied. A tuple doing ex…
[ download ]