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, ∼2384🔥, 0💬
Popular Posts:
How to make application release build with Visual Studio 2017? If you want to make a final release b...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...
How to view API details on the Publisher Dashboard of an Azure API Management Service? You can follo...
How to enter & sign in '@(...)' expressions? & signs can be entered in '@(...)' expr...
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...