Robotics & Artificial Intelligence

'**kwargs' keyword allows to pass variable number of arguments in a function and store the provided arguments in tuple.

Python Functions

1 Like

Answer

False

Reason — The **kwargs keyword is used to pass a variable number of arguments to a function, but the provided arguments are stored in a dictionary, not in a tuple.

Answered By

1 Like


Related Questions