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 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}
Create a free account to access the full topic