KnowledgeBoat Logo

Computer Science

Which values are used by the functions to communicate information back to the caller?

  1. local
  2. global
  3. return
  4. random

Python Functions

2 Likes

Answer

return

Reason — The return statement is used by functions to communicate information back to the caller. It allows functions to send a specific value or result back to the code that called the function, which can then be used for further processing or operations.

Answered By

3 Likes


Related Questions