1
Foundations
Everything starts here: running your first program, storing values in variables, and shaping text. By the end of the day you will have written a program that asks a question and answers it.
Lessons
- 1 Hello, Python Run your first Python program, print things to the screen, and leave notes for your future self. print syntax comments
- 2 Variables & Numbers Give values names, do arithmetic that behaves, and learn why 0.1 + 0.2 is not 0.3. variables numbers operators
- 3 Strings & f-strings Build, slice and format text — the data type you will handle more than any other. strings f-strings slicing
- 4 Input & Types Ask the user a question, convert what comes back, and understand why input() always hands you a string. input types conversion