What is the type of the object that Python functions use, when a function does not return a "useful" object? For example:
from time import sleep
sleep(2)
What is the type of the object that Python functions use, when a function does not return a "useful" object? For example:
from time import sleep
sleep(2)
Missing return statement is the same as returning None
>>> sleep(2) is None
True