Mega Code Archive

 
Categories / Python / Language Basics
 

The break and continue statements

count = 0 while True:     count += 1     # end loop if count greater than 10     if count > 10:        break     # skip 5     if count == 5:         continue     print count