...

/

Statements and Indentation

Statements and Indentation

Learn about the indentation rules as well as take a look at the different types of Python statements.

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 ...