Immediately after Python executes a plain def statement with no decorators, but before the function is called, what has happened?
Explanation
Executing def creates a function object and binds the declared name to it at that moment. The body waits for a call, so claiming that def immediately runs the body confuses definition with invocation.