Python Programming - Functions - Discussion

Discussion Forum : Functions - General Questions (Q.No. 13)
13.
How do you pass a variable number of keyword arguments to a function?
Using the **kwargs syntax
Using the *args syntax
Using the varkwargs() function
Using the kwarg_count parameter
Answer: Option
Explanation:
The **kwargs syntax allows a function to accept a variable number of keyword arguments.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.