// resources
Resources
All
|
Cheatsheet
Code Example
Exercise
Template
Other
Achievement
|
Basics
Control Flow
Functions
Data Structures
Modules & Packages
Projects
Object-oriented programming
|
↑ oldest first
↓ newest first
// Other
if_mistakes.py
6 mistakes almost every beginner makes with if. Wrong way, error, right way — all in one file.
// Other
for_mistakes.py
6 mistakes almost every beginner makes with for. Wrong way, error, right way — all in one file.
// Other
pass_continue_break_mistakes.py
5 mistakes almost every beginner makes with pass, continue, and break. Pass holds, continue skips, break stops — three …
// Other
while_mistakes.py
5 mistakes almost every beginner makes with while. Infinite loops, false conditions, missing break, invalid input, off …
// Other
match_case_mistakes.py
5 mistakes almost every beginner makes with match / case. Version check, missing wildcard, case sensitivity, wildcard p…
// Other
nested_loops_mistakes.py
5 mistakes almost every beginner makes with nested loops. Indentation, break scope, counter placement, iteration count,…