KnowledgeBoat Logo
|

Computer Science

Value returning functions should be generally called from inside of an expression.

Python Functions

3 Likes

Answer

True

Reason — Value returning functions in Python compute a value and return it to the caller. These functions are called from within an expression where their returned value is used for further computation, assignment, or comparison.

Answered By

3 Likes


Related Questions