Given def total(*args): return args, what does args receive in the call total(2, 3)?
Explanation
The starred parameter gathers unmatched positional arguments, preserving their order in a tuple. Treating args as a list or as a receiver for keyword arguments assigns it the wrong container or argument category.