Question-155: In Python every function returns a value?
- True
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Answer: A
Exp: Yes, if a function explicitly does not return a value. It means, it is implicitly returning a None value.
Returning values from function
- Till now, we have seen all the functions are having some behavior, do calculation and produce results and printed on console.
- Do you know, function can return a value and you can use it later?
- There are function exists which can return or not return values.
- If you see build in function
You can access to full explanation to question and answer from this page.