229k views
3 votes
The function below returns the sum of the two variables n1 and n2. Write a function CALL that displays the return value on the screen

def sum(n1, n2):
n = n1+n2
return n

User Antoniazzi
by
5.6k points

1 Answer

6 votes

Answer:

print(sum(n1, n2))

Step-by-step explanation:

The print statement displays the function call sum() with n1 and n2 as the variables to be used by the function.

Hope this helps :)

User DmitryArc
by
5.5k points