Python Module Introduction
1. Python Module. Python has many useful built in modules, which can be used as soon as the installation is complete. We use the build-in sys module as an example to write a hello module as below. #!/usr/bin/env python3 # -*- coding: utf-8 -*- ‘ a hello test module ‘ __author__ = ‘Richard Trump’ import …