Blog

What is the output of the code below?

def argfunc(num, *args):
v = 0
for x in args:
v += x
print(v)
argfunc(10, 15, 15)