What does indentation mean?

The spaces at the start of a line. In Python indentation is not decoration: the lines indented under an if, a loop or a def are the block that belongs to it.

Also written as: indented, indent

In a lesson

Until now every program has been a flat list: one line after another. Real programs have structure: some lines belong together as a group, and the group runs only sometimes, or runs many times. Python shows those groups with indentation, the spaces at the start of a line. This lesson is about that, before the rest of the module uses it for real.

Learn it

Used in

and 7 more lessons.

Do the lesson in the simulator

All glossary terms