Function Python Tutorial

def square( y ):
   return y * y
for x in range( 1, 11 ):
   print square( x ),
print