xxxxxxxxxx
a = False
if not a:
#Does this
a = True
if not a:
#Doesn't do this
xxxxxxxxxx
>>> a = [0, 1, 2]
>>> for element in a:
if not element:
pass
print(element)
0
1
2
>>> for element in a:
if not element:
continue
print(element)
1
2