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