from math import * def sqr(x): y = x**2 return y # return a value to the calling line sum = sqr(1.5) * sin(pi/6) # the line which calls the function sqr print(sum)