What is the output of the following code ?
def foo(p=5, *args): print(type(args)) foo(5, 6, 7, 8)
All the extra positional arguments will be stored in tuple args except the first argument
Comment here: