Programming Fundamentals
Python from zero: variables, data, logic, loops and functions.
01VariablesA named box that stores a value — in real, runnable Python.Read lesson →02Output and InputMake programs talk to the user with print and input.Read lesson →03Making DecisionsBranch your program's behaviour with if, elif and else.Read lesson →04Repeating with LoopsRepeat actions efficiently with for and while loops.Read lesson →