Computer Science
Name the statement that sends back a value from a function.
- input
- return
- 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
Function can alter only mutable data types.
A function in Python begins with which keyword?
- void
- return
- int
- def
Functions that do not return any value are known as:
- fruitful functions
- void functions
- library functions
- user-defined functions
A variable created or defined within a function body is classified as:
- local
- global
- built-in
- instance