Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.27 KB

File metadata and controls

29 lines (21 loc) · 1.27 KB

Section 01: Fundamentals

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.

Lessons

# 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

What You'll Be Able to Do After This Section

  • 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

Prerequisites

None! This is the starting line.