-
Python question of the day What is the return value of print()? True
None
Null
1
Explanation:In python, every function will always return something. So, if a function does not have a return value (no explicit return statement in the function) then Python will implicitly returns None.
