The for...else idiom (see [http://docs.python.org/ref/for.html][1] )
for i in foo:
if i==0:
break
else:
print "i was never NULL"
The "else" block will be normally executed at the end of the for loop, unless the break is called.
[1]: http://docs.python.org/ref/for.html