This is where it all begins. These lessons cover the absolute basics of Python — the stuff you'll use in every single program you ever write.
Don't rush through this section. A solid foundation here makes everything else click faster.
| # | Lesson | Description |
|---|---|---|
| 01 | Hello World | Your first Python program — printing to the screen |
| 02 | Variables and Types | Storing data and understanding Python's type system |
| 03 | Standard Input/Output | Getting input from users and displaying output |
| 04 | Control Flow | Making decisions with if, elif, and else |
| 05 | Loops | Repeating things with for and while loops |
| 06 | Functions | Writing reusable blocks of code |
| 07 | String Operations | Slicing, formatting, and manipulating text |
- Write simple Python scripts from scratch
- Take user input and produce formatted output
- Make decisions and repeat actions in your code
- Organize code into reusable functions
- Work confidently with strings and basic data types
None! This is the starting line.