This is the very important part specially in python language.
if
or for
statement [after :]if
or for
statement to indicate that the end of the block.Example:
x = 5
if x > 2:
print('Bigger than 2')
print('Still Bigger')
print('Done with 2')
for i in range(5):
print(i)
if i > 2:
print('Bigger than 2')
print('Done with i', i)
print('All Done')