Question
In `def mean(values):`, what is `values` called?
Select an option. Your answer will be checked instantly.
Correct Answer: B. A parameter
Explanation:
A parameter is the name listed in a function definition to receive input. An argument is the actual object supplied when the function is called.
Leave a Reply