Category Python Programming

Python is one of the most widely used programming languages. It’s getting a lot of popularity these days because of so many Python frameworks in IoT, Machine Learning, Deep Learning, and Artificial Intelligent space.

These Python Tutorials will help you in getting mastery over the Python Programming. The tips and tricks shared by us will enable you to write pythonic code with high performance, reusability, readability, and maintainability.

Python Stack

A Stack is a Last-In-First-Out Linear data structure i.e. the element entered at the last will be the first element to be removed. In stack, the items are added at one end and these items are removed from the same…

Counter in Python

A Counter is a subclass of dict and is part of the Collections module. It is used for counting hashable objects. It is an unordered collection where the elements are stored as Dictionary Keys and their counts are the values.…

Python String Substring

Substring is a portion of the string that can be extracted and represented as a new string. In this tutorial, we will learn how to work with Substrings in Python. 1. Creating Python String Substring Substring can be created using…

Python Not Equal operator

A comparison operator identifies the relationship between the operands and results into True or False. One such basic yet important operator is not equal operator in Python. It returns True if the values on either side of the operator are…

@staticmethod in Python

The @staticmethod decorator Python @staticmethod decorator is used to label a class method as a static method, which means that it can be called without instantiating the class first. It simply defines a normal function that is logically contained in…

*args and **kwargs in Python

Python provides some handy ways through which we could make a function take a variable number of arguments. *args and **kwargs do just that. *args -> Represents a List / Tuple of positional arguments to be passed to any function…

String Comparison in Python

The following are the ways to compare two string in Python: By using == (equal to) operator By using != (not equal to) operator By using sorted() method By using is operator By using Comparison operators 1. Comparing two strings…

Python Reverse String

Strings are basically sequence of characters. Python doesn’t support in-built string functions such as reverse() to reverse a string. The following are the ways to reverse a string in Python: By using a for loop By using a while loop…

Python String Functions

Python has built-in functions for almost every operation that is to be performed on a string. To make it simple, these are classified on the basis of the frequency of their use as well as their operations. They are as…