News

Note that when the loop ends, the program continues normally at print ("Done"). for n in range(20): if n == 10: break # leave the loop altogether print (n) print ("Done") This prints the numbers 0 ...