Function Python

def times(x, y):      # create and assign function
     return x * y      # body executed when called
x = times(3.14, 4)    # save the result object
print x