Function Python

def times(x, y):      # create and assign function
     return x * y      # body executed when called
print times('Ni', 4)        # functions are 'typeless'