0
Help
what does the return function do. for example- def multiply (x,y) return x*y here we have two line. what does the second line do.
4 Answers
+ 5
It returns the multiple of its passed in arguments
as follows:
>>>def multiply(x, y):
return x * y
>>>multiply(5, 10)
>>>50
0
The return STATEMENT stops the execution of the function's body and returns the result of the expression inside the caller's local context.
0
va imprimir la multiplicaciĂłn de dos nĂșmeros



