A module is a single Python file that can be imported. Using a module looks like this:
module.py
def hi(): print("Hello world!")
my_script.py
import module module.hi()
in an interpreter
>>> from module import hi >>> hi() # Hello world!