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

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



Answer:

def square(int):
return int**2


Learn More :