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