> Help with python functions?

Help with python functions?

Posted at: 2014-12-18 
In python2:

x = int(raw_input("Insert number to be squared:"))

def square(x):

return x ** 2



print square(x)

dnha