If you do not explicitly return a value from a function, what happens?
If the return keyword is absent the function will return None.
None
If the return keyword is absent, the function will return True.
True
The function will enter an infinite loop because it will not know when to stop executing its code.
The function will return a RuntimeError if you do not return a value.
RuntimeError