Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
Modules
Introduction
As programs get longer and more complex, organizing the code into modules is helpful. This course shows how to define, import, and find new modules. Python's standard library provides over 200 built-in modules. Hundreds of thousands of other modules are available online.
Defining a Module
A module is a .py
file containing function definitions and other statements. ...