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