Computer Science

Name the statement that sends back a value from a function.

  1. print
  2. input
  3. return
  4. None

Python Functions

1 Like

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.

Answered By

1 Like


Related Questions