Name the statement that sends back a value from a function.
print
input
return
None
Answer
return
Reason — The return statement in a function specifies the value to be sent back to the calling function and also signifies the end of the function's execution.