# oddSquares.py # Neal Nelson 2009.10.05 # # Print the squares of the odd numbers from 1 to 9 # def main(): for i in [0,1, .. 9 ] print i*i main()