A module is a file that can contain any kind of Python code. Modules allow us to use code again and again.

Which of these things might belong in a module?

VariablesScriptsFunctionsFiles

That’s right. A module can contain variables, functions, and even scripts.

Might it be that a module is a file that can contain quite a few things, but not really files?