Why do i see "indentationerror: expected an indented block" in python?

Example:

if True:
print("True!")
This error is caused by incorrect indentation, which is crucial in Python.

Solution:

if True:
    print("True!")

Beginner's Guide to Python