How many numbers of keyword arguments can be passed to a function in a single function call ?Example:
def foo(**kwargs): pass
Keyword argument **kwargs can take 0 or more number of arguments in a dictionary
Comment here: