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

3 Likes


Related Questions