Python Indentation
It refers to the spaces and tabs that are used at the begining of the statement.
Uses of Indentation
- Python relies on indentation,using white spaces to define the scope in the code.
- Other programming languages often use curly-brackets for this purpose.
- If statement without indentation will raise an error.