Argument trouble

Report a typo

Look closely at the code below. What will it produce?

def sum_all(a, b):
    return a + b

def sum_all(a, b, c):
    return a + b + c

print(sum_all(1,2))
Select one option from the list
___

Create a free account to access the full topic