How to use Itertools Python

What is itertools? Itertools is a Python module that used to iterate iterables using for-loop. As according to Python official itertools – Functions creating iterators for efficient looping It is useful to construct different of sequences using iterators....

How to make use os.path.join Python module

What is os.path.join Python module There will be time the need to get information or execute on local directories and file. Task like read and connect to database is one of the example that commonly used to create a function using os.path.join() module. A project read...

Python – Modular Programming With Modules

Introduction Size of software or application can grow and getting complex from time to time. If you want to write a scaleable, readable and manageable application you need to organize in proper ways. This is where modular programming as a software design technique...

Python Object Oriented Programming (OOP)

Introduction Python is known for its strength as Object Oriented Programming even though Python itself is a multi-paradigm progamming language which support different programming approaches like other design pattern such as procedural, functional and more. OOP uses...