Function calls

Report a typo

Select the function call that will NOT return the number 21.

def some(x, y, z):
    y = 10
    return x + y + z
positional_args = [10, 10, 1]
keyword_args = {'x' : 7, 'y' : 8, 'z' : 4}

Select one option from the list
___

Create a free account to access the full topic