Search⌘ K

Statements and Indentation

Understand how Python uses indentation instead of braces to structure code and learn different statement types such as assignment, print, conditionals, loops, and imports. This lesson helps you write clear and correct Python programs by mastering these foundational syntax rules.

We'll cover the following...

Indentation rules

Indentation matters in Python. While other languages use braces in statements, Python uses indentation. There are generally some rules that need to be followed when dealing with indentation in Python, which are the following:

Note: Standard indentation is four spaces. You ...