Chapter 8: Modules and Packages
Python Modules
A module is simply a Python file.
Any file ending in .py is a module.
calculator.py
student.py
my_functions.py
Each of these files can contain Python code such as:
Functions
Classes
core-python.hashnode.dev35 min read