Robotics & Artificial Intelligence
'*args' keyword allows to pass a variable number of arguments and arguments are stored in a tuple.
Python Functions
1 Like
Answer
True
Reason — The *args keyword is used to pass a variable number of arguments to a function. The arguments passed using *args are automatically stored in a tuple, which can be accessed inside the function.
Answered By
1 Like
Related Questions
Non-fruitful functions use the return statement to return values.
Invoking a function is similar as calling a function in a program.
'**kwargs' keyword allows to pass variable number of arguments in a function and store the provided arguments in tuple.
In Python, functions can be defined to accept variable length of arguments.