How do you assign a default value for a parameter?
You type in the parantheses the function and a value, like 'def coffee(size=15)'.
How do you call a function that has a default value for a parameter?
Setting a parameter's default value allows the function call to use the default value unless another value is specified with the call.