What is the output of the following code ?
def func(x, *args): print(x, args) func(1, 2, 3)
1 is a positional argument, so will be assigned to x2, 3 are arbitrary arguments will be assigned to args tuple
Comment here: