Tools, FAQ, Tutorials:
What Is Module Package
What Is Module Package in Python?
✍: FYIcenter.com
A module package in Python is a collection of Python module files saved in a file directory with a special file called __init__.py.
A module package can have the following elements:
Module packages can be nested in the same way as file directories can be nested.
For example, we can created a module package called "firstPackage" by creating the following file directory and the __init__.py file:
>\fyicenter> dir <DIR> firstPackage >\fyicenter> dir firstPackage 337 secondModule.py 165 __init__.py >\fyicetner> type firstPackage\__init__.py # __init__.py """My first module package""" 1.00 = "2.0" print("Loading first package...") def sayHello(): print("Greetings from first package!")
⇒ 'import' Module Package Loading Statement
2022-08-26, 1355🔥, 0💬
Popular Posts:
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...