Computer Science
A void function also returns a value i.e., None to its caller.
Python Functions
1 Like
Answer
True
Reason — A void function do not return a value but they return a legal empty value of Python i.e., None
to its caller.
Answered By
1 Like
Related Questions
The default values for parameters are considered only if no value is provided for that parameter in the function call statement.
A Python function may return multiple values.
Variables defined inside functions can have global scope.
A local variable having the same name as that of a global variable, hides the global variable in its function.