- For the module:

def square(n):

    return n* n

- For the executive file:

import square_area

area_of_square = square_area.square(20)

print(area_of_square)