Text about site.
Details
When python creates functions defined by "def" statement? (multiple choice question)
Function is created when interpreter reads def statement.
Functions are created when module containing functions is imported into some code.
Function is created only when it's imported directly (like from module import this_function) or by asterisk (from module import *).