In the last post I discussed about Python Module. From last post we came to know that a Python module is simply a Python source file, which can expose classes, functions and global variables.So, what is Package? The simple striate-forward answer is “A Python package is simply a directory of Python module(s).” Make a Package…Continue reading Python Package
Tag: Python
Python Module
What is Module Module is logical organize of reusable Python Code. Module groups the related code for easy to understand and use. As we know almost everything on Python are object, Module is also an object that can be bind and reference. Simply, a module is a file that define functions, classes and variables. A…Continue reading Python Module