show/hide this revision's text 2 added equivalent code without else

The for...else idiom (see http://docs.python.org/ref/for.html )

for i in foo:
    if i==0i == 0:
        break
else:
    print "i print("i was never NULL"
0")

The "else" block will be normally executed at the end of the for loop, unless the break is called.

The above code could be emulated as follows:

found = False
for i in foo:
    if i == 0:
        found = True
        break
if not found: 
    print("i was never 0")
show/hide this revision's text 1

The for...else idiom (see http://docs.python.org/ref/for.html )

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.

    Post Made Community Wiki by Community