December 2009
Beginner to intermediate
360 pages
11h 12m
English
This chapter covers:
Modules are used to organize larger Python projects. The Python standard library is split into modules to make it more manageable. You don’t need to organize your own code into modules, but if you’re writing any programs that are more than a few pages long, or any code that you want to reuse, you should probably do so.
A module is a file containing code. A module defines a group of Python functions or other objects, and the ...
Read now
Unlock full access