1. Comments, Indentation, pass ✍ - JulTob/Python GitHub Wiki

💬 Comments

#  Work like this
"""Or as multiline
like this, with three quotes """

🌬 Indentation

Indentation is important in python. Determines the scope of a statement or block.
Indentation is 1 tab or 4 spaces.
To escape this you can use [],{}, or () and the following code will scope to the indentation of the parenthesis.

🙅🏻 Pass

# Placeholder for null statements
pass

Statement separator

Statements can be separated by newlines or semicolons ;

a, b, c = 6, 5, 4

print(a)
print(b);
print(c); print(a)
print(b); print(c);