Python Modules and Packages
摘要
In Python, a module is a folder or file that contains Python code. Typically, a module contains code for a specific functionality. One example is the module, which contains functions for mathematical operations. Modules can be imported into another file using the statement which is one of the most common operations in Python.