Given def total(**kwargs): return kwargs, what does kwargs receive in the call total(a=1, b=2)?
Explanation
The double-starred parameter gathers unmatched named arguments into a dictionary that retains both keyword names and their values. It does not discard the names or collect these arguments into a positional tuple.