Update appNew update is available. Click here to update.
Last updated: Feb 14, 2022

Python Exclusive

Learn about simple and versatile data types such as Tuples and Dictionary, as well as method implementations and useful Python packages that can be used to reduce complexity.
Data Types in Python
In this blog, we will learn about different data types that exist in Python.
Create Command Line Argument using Python Argparse MEDIUM
This article covers the introduction to CLIs, concepts about python argparse, along with the prerequisites required to use it and how to use it.
Understanding Global, Local and Nonlocal Variables in Python EASY
The article will make you clear about the difference between Global, Local and Nonlocal variables in Python.
Python Operators
In this blog, we will learn about the different types of operators present in Python.
Python Remove Duplicates from List EASY
In this blog, we will learn about Python remove duplicates from list. We will understand different ways to remove duplicates from the list.
Modulo Operator in Python EASY
Modulo Operator in Python is used to find the remainder while dividing the dividend by the divisor.
Python Arithmetic Operators EASY
This article discusses the python arithmetic operators along with various examples to elaborate on it. It also discusses some faqs based on the same.
Author Alisha
0 upvotes
Python Readlines EASY
In this blog, we will learn about python readlines. We will understand its core concepts and learn about its advantages and disadvantages and much more.
Python Comprehension EASY
In this blog, we will get familiar with the concept of Python comprehension in which we make use of an existing sequence to make a new sequence.
Python Filter Function EASY
This article will provide an overview and explain the Python filter function, the syntax related to them, the return value it gives, and its implementation.
Membership Operators in Python EASY
This article aims to explain the membership operators in Python and all the key features of membership operators in Python with examples.
Identifiers and Keywords
In this blog, we will learn about keywords and identifiers in Python.
Python Lowercase EASY
In this blog, we will learn python lowercase. We will understand its core concepts,and learn about its advantages and disadvantages and much more.
Python Data Analytics EASY
In this article, we'll explore how Python is used in data analytics, diving into numerical data analysis with NumPy and data manipulation with Pandas, accompanied by practical code examples.
Python Classmethod EASY
In this blog, we will learn about Python classmethod. We will learn about Python class method and also will write code for better understanding.
Difference between Keyword and Identifier EASY
This blog deals with Python Keywords and Identifiers in detail, along with some examples. Differences between keywords and identifiers, rules to name an identifier, etc., have also been covered.
Author Shiva
0 upvotes
Sep() parameter in Python EASY
Sep() in Python adds a separator between printed objects. Learn more about sep and how it differs from end.
Author Alisha
0 upvotes
ceil() and floor() in Python EASY
This article gives a detailed overview of how to use ceil and floor in Python.
Author Komal
0 upvotes
What is the Difference Between del, pop and remove in Python? EASY
In this article, you will learn about the del and pop and remove functions, the difference between pop and remove in Python, difference between pop(), remove() and the del keyword and when to use them.
Mutable and Immutable Objects in Python
In this article, we will discuss mutable and immutable objects in Python and see the difference between them.
String Manipulation in Python EASY
A string is a data type commonly used in programming. In this article, we will learn about various built-in functions in the standard Python library to analyze and modify strings.
String Reverse in Python
This article will discuss various ways of reversing a string in Python, and in the end, we will also discuss some of the FAQs.
How to Reverse a String in Python (7 Different Ways) EASY
In this blog, we will learn about different methods of reversing a string python.
F-Strings in Python
In this article, we will learn the uses of f-string in Python.
What is len() Python? EASY
In this article, we will learn about a python method: len(). We will also see the code to calculate the sequence or collection length using len Python.
Type Conversion & Type Casting in Python EASY
In this blog, we will learn about type casting and type conversion in Python.
Author Komal
0 upvotes
Binary Search in Python (With Code) MEDIUM
In this article, we will go through the basic concept of binary search, the two approaches, and the implementation of binary search in Python, as well as their complexities and real-world applications.
Author Rashi
0 upvotes
How to Implement Quick Sort in Python? MEDIUM
This blog explains the quicksort algorithm, goes through an example, time and space complexities, as well as codes in both Python3 and Python2.
Insertion Sort in Python EASY
This article covers the concept of insertion sort in Python, its working, implementation, advantages, and limitations.
Deque() in Python EASY
In this article, we will discuss a deque in python.
Author kaido
0 upvotes
Append in Python EASY
In this article, we will learn Append in Python in detail.
What is Pass Keyword in Python? EASY
This article will discuss what the pass keyword in Python is.
Python Regex MEDIUM
In this blog, we will learn about Python regex. We will discuss various concepts of python regex, its advantages and much more.
Python Logging EASY
The process of keeping a record of all input data, output data, processes, and final results of a program is known as Logging.
Python Matplotlib EASY
Matplotlib is an open-source plotting library that allows developers to create static, animated, and interactive visualizations in Python.
Literals in Python EASY
Literals in Python are used to represent constant values in a program. This article aims to describe literals in python.
Top Python Applications MEDIUM
In this article, we will learn about the Top Python Applications that are in trend.

Data Structures in Python

Aside from the standard data structures such as arrays, trees, and stacks, Python has its own data structures such as Lists, Tuples, Sets, and Dictionary. Learn about its implementation and various operational methods.
Lists and List Comprehension MEDIUM
In this blog, we will discuss what are lists in python and will further discuss list comprehension.
Lists Methods EASY
In this blog, we will discuss lists methods in python.
Python List sort() EASY
Python List sort is a built-in function in Python used to sort the list of items in place in ascending or descending order.
Difference Between Append and Extend in Python EASY
In this blog, we will learn about lists in Python and how to update elements to a list. We will discuss the difference between append and in.
List Length in Python EASY
In this blog, we will discuss how to find the length of a list in Python, along with comparison of different ways to find the length of a list.
What is reverse in python? EASY
This article discusses python list reverse using various methods and examples.
Author Alisha
0 upvotes
Python List Operations EASY
This article explains various Python list operations.
Introduction to Python Tuples
This article will cover one of the data types in python,i.e., tuples, their operations, representation, and many more.
Difference between List, Tuple, Set and Dictionary in Python EASY
In this article, we will cover the differences between list, tuple, set and dictionary in Python.
Lists vs Tuples EASY
In the following article, we discuss briefly Lists and Tuples and examine the differences between them using some examples.
Nested List in Python EASY
This blog will discuss the nested list in Python. We will see the working of the nested list with examples in Python.
Difference Between Lists and Arrays in Python
Lists and arrays are two of the most important data structures in Python. In this article, we will see the key differences between lists and arrays in Python.
Array in Python EASY
This blog explains the details of array in python.
Arrays in Python EASY
An array is a collection of variables of the same type referred to by the same name. Arrays are made up of contiguous memory regions.
Dictionary and Sets
In this article, we will discuss dictionary and sets in Python and see their basic functions and implementations.
Methods of Dictionary
This article will cover one of the data types in python,i.e., Dictionary, their methods, representation, and many more.
Python Dictionary to CSV file EASY
In the article “Python Dictionary to CSV file”, we will discuss Python Dictionary, CSV file, and how a Python dictionary can be converted into a CSV file.
Python Operator Precedence MEDIUM
In this blog, we will learn about python operator precedence. We will understand its core concepts and learn about its advantages and disadvantages and much more.
FromKeys() method in Python Dictionaries EASY
In this blog, we’ll understand Python Dictionary fromkeys() with examples.
Defaultdict() in Python MEDIUM
In this article, we will learn about Defaultdict in Python. We will understand a dictionary and how it differs from defaultdict in Python.
How to merge two dictionaries in python? MEDIUM
In this article, we will discuss python dictionaries, how to merge python dictionaries, examples, and their implementations.
Strings in Python
A string is a data type commonly used in programming. In this article, we will learn about Strings in Python and learn some of the basic string functions provided by Python.
What is String Slicing in Python? EASY
In this article, we have extensively discussed the details of string slicing in python and the various methods of slicing a string in python.
Python String replace() Method EASY
This article will discuss the Python string Replace() function, how it is a case-sensitive function, and why it does not change the original string.
Python String Concatenation EASY
In this article, we will learn how to concatenate strings in python. To know more about Python string Concatenation, you can check the complete article.
Author Tisha
0 upvotes
Capitalize() in Python EASY
This blog will discuss the topic of Capitalize in Python, which includes the definition of Capitalize, its syntax, parameter, return type and examples. We have also seen the drawback and pros of Capitalize in Python.
Python String split() Method MEDIUM
Python split string method is a built-in function in the Python programming language to split a specific string into a list of substrings based on a delimiter
reduce function in Python MEDIUM
This blog gives a detailed overview of how to use reduce function in Python.
Python Multiline String EASY
This article will discuss all the points associated with the Python Multiline String. We will also look at an example of a Python multiline string.
Empty Set in Python EASY
This article discusses the empty set in Python and its critical concepts.
Python Program to Find the Factorial of a Number EASY
In this blog, we will discuss the different ways like recursion, for-loop, etc. to execute a factorial program in Python.
Set symmetric_difference() in Python EASY
In this article, we will discuss the symmetric difference in python and how it is different from the python set difference function.