

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
def f(a, *rest, **opts):
print(a, rest, opts)
f(1, 2, 3, x=4)

Trace the program the way the computer would, then make your call before running anything.
def f(a, *rest, **opts):
print(a, rest, opts)
f(1, 2, 3, x=4)