demo_for_pass.py:
for x in [0, 1, 2]: pass # having an empty for loop like this, would raise an error without the pass statement
C:\Users\My Name>python demo_for_pass.py