""" Ex. 2.4 from "A primer on... """ n = 7 i = 1 while i <= n: print(i) i += 2 """ Terminal> python odd.py 1 3 5 7 """