Formatting and Syntax
Python Indentation
if 1==1:
#### 4 spaces or 1 tab spot
print("This is indent level 1")
if 2==2:
######## 8 spaces or 2 tab spots
print("This is indent level 2")Comments
#This is a comment. Last updated
Was this helpful?