break from for loop : for « Statement « Python Tutorial






from math import sqrt 

for n in range(99, 81, -1): 
    root = sqrt(n) 
    if root == int(root):
       print n 
       break 
    else: 
       print "Didn't find it!"








3.3.for
3.3.1.for Loops
3.3.2.break from for loop
3.3.3.Iterating List with for Loops
3.3.4.Iterating Through a Dictionary
3.3.5.for Loop and the range() Built-in Function
3.3.6.Counter-controlled repetition with the for structure and range function.
3.3.7.Summation with for.
3.3.8.Nested for loops
3.3.9.Calculating compound interest.
3.3.10.Using the break statement in a for structure.
3.3.11.Using the break statement to avoid repeating code in the class-average program.
3.3.12.Using the continue statement in a for/in structure.