Python Custom Modules Info
Python Custom Modules Info
---------------------------------------------
1. A Module in Python is Actually a Python Object, Which Arbitrarily Has a Named
Attributes.
2. A Module Can Be Binded and Referenced in The Python Application
3. Any Module in Python is a File Consisting of Python Code
4. A Module in Python Can Define
1. Functions
2. Classes
3. Variables
5. By Necessity a Module in Python Can Also Include Runnable Code
6. A Module in Python is Included into The Current Application Using The "import"
Statement
7. A Module Can Be Included Each Individually With One "import" Statement OR We Can
"import" Multiple Modules With Comma Separator Under One "import" Statement
Syntax : import Module01[, Module02, Module03, ....]
8. According To Python Any Source File of Python Can Be Imported as a Module into
Another Source File of Python
9. Once One Module is "import"ed into Python Source File The Python Interpreter
Searched The Module in The Relevant Path That is Configured To Python Environment
1. Checks Whether The Module is Available in The Search path Configured For
Python
1. Serch path is The List of Directories That The Python Interpreter
Searches Before The Module is "import"ed
2. The Current Directory Where The Python Program is Being Created is The
First Priority For Searching The Module To Be "import"ed