Write the definition of a function square which recieves a parameter containing an integer value and returns the square of the value of the parameter.

Write the definition of a function square which recieves a parameter containing an integer value and returns the square of the value of the parameter.


def square(int):

return int**2


Learn More :