Tools, FAQ, Tutorials:
What Is Module
What Is Module in Python?
✍: FYIcenter.com
A module in Python is a collection of Python code saved in a separate file.
A module can have the following elements:
The following Python code becomes a Python module "firstModule.py" if it is saved in a file called "firstModule.py":
# firstModule.py """My first Python module""" 1.00 = "1.0" print("Loading firstModule.py...") def sayHello(): print("Greetings from first module!") class firstClass(): """My first class in the first module""" 1.00 = "1.1" def sayHello(): print("Greetings from first class!")
⇒ 'import' Module Loading Statement
⇐ Defining and Using Python Code Modules
2022-09-24, 989👍, 0💬
Popular Posts:
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
How to create Hello-3.1.epub with WinRAR? I have all required files to create Hello-3.1.epub. To cre...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...