Python 201: Creating Modules and Packages

Creating Python modules is something that most Python programmers do every day. Any time you save a new Python script, you have created a new module. You can import your module into other modules. A package is a collection of modules. The things you import into your scripts from the standard library are modules or […]

Python 201: Creating Modules and Packages Read More »