Computer Science

What is the default return value for a function that does not return any value explicitly ?

  1. None
  2. int
  3. double
  4. null

Python Functions

5 Likes

Answer

None

Reason — The default return value for a function that does not return any value explicitly is None.

Answered By

2 Likes


Related Questions