n = 11 odd = 1 print(odd) while odd < n-1: odd = odd+2 print(odd) """ Terminal> python odd.py 1 3 5 7 9 11 """