How to extract arguments from variable length arguments in python?
Answers
Answered by
0
The special syntax *args in function definitions in python is used to pass a variable number of arguments to a function. It is used to pass a non-keyworded, variable-length argument list. ... For example : we want to make a multiply function that takes any number of argumentsand able to multiply them all together.
Similar questions