Statement Python Tutorial

for x in range( 1, 11 ):
   if x == 5:
      break
   print x,
print "\nBroke out of loop at x =", x