# Chapter 18 example: while True with break runs the body at least once. # (Python has no repeat...until; use while True and break at the end.) count = 1 while True: print(count) count = count + 1 if count > 5: break