# Chapter 18 example: countdown with while. count = 10 while count > 0: print(count) count = count - 1 print("Blast off!")