KnowledgeBoat Logo

Computer Science

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

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

Python Functions

3 Likes

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

2 Likes


Related Questions