What does *args mean in function?
What does *args
mean in function?
a. The special *args
syntax is most commonly used in function definitions. It is used to pass a variable number of arguments to a function – arguments with specific names.
b. The special *args
syntax is most commonly used in function definitions. It is used to pass a variable number of arguments to a function – arguments that do not have a specific name.
c. Python does not have a *args
syntax.