In [1]:
for i in range(3):
print(i)
if i == 1:
continue
print('CONTINUE')
In [2]:
for i in range(3):
print(i)
if i == 1:
pass
print('PASS')