Python is a simple, high-level, general-purpose, and object-oriented programming language. In this programming, world python is very simple, easy to
Continue readingCategory: Python
Python Decorators
Problem Statement: To understand Python Decorators. In Python, decorators are powerful tools that modify the behavior of a function or
Continue readingPython DateTime
Problem Statement: To understand Python DateTime. In python, anything that has to do with date and time is handled by
Continue readingPython RegEx
Problem Statement: To understand Python RegEx. RegEx stands for Regular Expression. The Regex or Regular Expression is a way to define
Continue readingPython strftime()
It is a special function for converting date and time objects into string form. It comes under the DateTime module.
Continue readingPython Closure
Overview Before I talk about what Closure is and what it does? Let’s first understand scope resolution and nested function.
Continue readingPython errors and built-in exceptions
Introduction Generally, newbie programmers are not familiar with the errors that may occur when they try to run a code
Continue readingPython Exception Handling
Introduction If exceptions remain unhandled, they can cause abnormal termination of the program and hence confuse the programmer. In this
Continue readingGenerators in Python
Overview Whenever we call a generator function, it returns an iterator which is known as a generator. But what is
Continue readingPython Multiple Inheritance
Multiple inheritances simply state that a child class (also known as a derived class) can inherit (use) the properties of
Continue reading