What is the recommended size of indentation in Python?

indentation, python

Solution

From PEP 8 (Python's official style guide):

Use 4 spaces per indentation level.

Problem

Is there any official rule/proposal on how should the Python code be indented?

Original source