1 of 1

def is a keyword in Python. It means “define”.

multiples is the name of our new function.

Our function has one parameter, which we call k.

Inside the function is the body, which must be indented.

The return keyword indicates that our function produces an output.

The docstring explains what the function does. It is optional to include.

The output is the value of the expression following the return keyword .