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.
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.
Python Operators EASY
Python operators explained with examples—learn arithmetic, comparison, logical, and bitwise operators to perform operations on variables and values.
Agglomerative Clustering EASY
In this blog, we will learn about Agglomerative Clustering. We will understand its core concepts, its usage, and much more for better understanding.
Removing duplicates in lists EASY
Learn 3 ways to remove duplicates from a Python list — using set(), list comprehension, and collections.OrderedDict.fromkeys().
Modulo Operator in Python EASY
Explore modulus in Python and see how the % operator helps calculate remainders, handle divisibility checks, and solve practical programming problems easily.
Fruitful Functions in Python EASY
In this blog, we will learn about Fruitful Functions in Python. We will understand its core concepts, syntax, parameters, and much more for better understanding.
Open a File in Python EASY
In this article, we'll discuss the basics of opening files in Python, including the different modes available & how to use them effectively.
Set symmetric_difference() in Python EASY
The set.symmetric_difference() method in Python returns a new set containing elements that are in either of the sets but not in both.
How to use ThreadPoolExecutor in Python3 MEDIUM
In this article, we will learn how to use ThreadPoolExecutor in Python 3 to manage multiple threads efficiently, improve concurrency, and optimize performance.
Python Program for Simple Interest EASY
Python Simple Interest program using SI = (P×R×T)/100 formula to calculate interest based on principal, rate, and time with easy-to-understand code.
Easy Python Programs EASY
In this article, we'll see some basic Python programs that are perfect for begineerswho are starting their programming journey. These programs are designed to help you understand fundamental concepts such as loops, conditions, and functions.
Identity Operator in Python MEDIUM
Learn Python identity operators with syntax, usage, and examples. Understand how is and is not work to compare object identities in Python.
List to Tuple in Python EASY
In this article, we will discuss different methods to convert a list to a tuple and explain the uses of each approach. 
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
Iterate Over a Dictionary in Python EASY
Learn how to iterate over a dictionary in Python using keys(), values(), items(), and other methods with clear examples and best practices.
Python Frameworks List MEDIUM
In this article, we will discuss some of the most commonly used Python frameworks & their features.
Introduction to Pywhatkit Module MEDIUM
In this article, we will explain the features of the pywhatkit module & learn how to use them with the help of examples.
Hamming Code in Python EASY
In this blog, we will learn about Hamming Code in Python. We will learn about its implementation, and will understand about its code in C for better understanding.
What is Tensorflow in Python EASY
In this article, we will discuss the basics of TensorFlow, like installation, computational graphs, variables, placeholders & building a simple linear regression model.
Tuples in Python EASY
Tuples in Python: Learn about immutable, ordered collections that allow duplicates, support multiple data types, with syntax, examples, and key features.
Data Types in Python EASY
In this article, we will learn about data types of Python like: Numeric, Sequence Type, Boolean, Set, Dictionary, Binary Types in detailed explanations with examples
A* Search Algorithm Python MEDIUM
In this article, we will learn how the A* algorithm works, its step-by-step implementation in Python, & analyze its time & space complexity.
Python String join() Method EASY
In this article, we'll learn different techniques to join lists in Python, like using the + operator, the extend() method, and the * operator.
Time Series Analysis in Python EASY
In this article, we will discuss the basics of time series analysis, like key concepts, types of data, and visualization techniques using Python.
PIL Library Python EASY
In this article, we will discuss the basic operations you can perform with the help of the PIL library, like opening images, displaying them, obtaining image information, rotating, resizing, and saving images.
Convert Text to Speech in Python EASY
Convert text to speech in Python easily. Learn simple, versatile methods to turn written text into audio using Python libraries with examples.
String Comparison in Python EASY
Compare strings in Python using relational operators, regex, the "is" operator, and custom functions with examples to master string comparison techniques.
Remove Key from Dictionary in Python EASY
In this article, we'll discuss different ways to remove keys from a Python dictionary, like using the pop() method, del keyword, and many more.
Python Network Programming EASY
In this article, we will talk about the fundamentals of Python networking, like sockets, socket programming, & creating simple server-client programs.
Carriage Return in Python EASY
In this article, we'll discuss the syntax, it’s examples, & the difference between carriage returns & newline characters in Python.
PEP 8 Python EASY
In this article, we will discuss the key aspects of PEP 8, which includes naming conventions, code layout, comments, & programming recommendations.
Iterate over a list in Python EASY
Iterate over a list in Python using loops, list comprehensions, and built-in functions. Learn easy, efficient methods with clear examples.
OrderedDict in Python EASY
Learn Python OrderedDict, its differences from a regular dictionary, and how to use it effectively with syntax, methods, and examples
Python Readlines EASY
Python File readlines() Method reads until end-of-file (EOF) using readline() and returns a list containing the lines.
Python Beautifulsoup MEDIUM
In this article, we will discuss the basics of Beautiful Soup, like- learning how to install it, & examples of how to use it for web scraping.
Script Mode in Python EASY
In this article, we will discuss the basics of script mode in Python, like how to create, save & run Python scripts. We will also discuss the advantages of using script mode.
What is Triple Quotes in Python? EASY
In this article, we will explore the syntax of triple quotes, their uses, and the advantages and disadvantages of using them in Python programming.
Python String rstrip() Method EASY
In this article, we'll talk about the syntax, it’s parameters, & use of the rstrip() method, along with examples which will help you understand how to apply it effectively in your Python programs.
Comprehensions in Python EASY
Learn Python comprehension—create new sequences from existing ones using list, dict, and set comprehensions with simple syntax and examples.
Legb Rule in Python EASY
In this article, we'll learn what the LEGB rule is, how it works, & see some examples to understand this properly.
Sentiment Analysis Using Python EASY
In this article, we will learn what sentiment analysis is, its various use cases, and how to perform sentiment analysis using Python.
Membership Operators in Python EASY
Explore membership operators in python! Learn how 'in' and 'not in' check if values exist in sequences like lists, tuples, and strings with clear examples.
Identifiers and Keywords
In this blog, we will learn about keywords and identifiers in Python.
Python Lowercase EASY
Python str.lower() converts all uppercase letters in a string to lowercase, making text comparison and case-insensitive operations simple.
Python Program to Check Leap Year EASY
Leap Year Program in Python: Learn how to check leap years using if-else statements and the calendar module with clear code examples and explanation.
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
A @classmethod is a method that receives the class as an implicit first argument, rather than the instance of the class.
Sep() parameter in Python EASY
The 'sep' parameter in the print() function is utilized to define the separator between the values being printed.
Author Alisha
0 upvotes
ceil() and floor() in Python EASY
Learn how to use ceil() and floor() functions in Python with examples. Understand their syntax, usage, and differences for precise calculations.
Author Komal
0 upvotes
What is the Difference Between del, pop and remove in Python? EASY
Learn Python's del, pop(), and remove() functions, their key differences, and when to use each for efficient list element deletion.
Python List Index() EASY
In this article, we will talk about the Python list index() method in detail, like its syntax, parameters, and different examples.
Difference Between Mutable and Immutable in Python EASY
Explore mutable vs immutable in Python with examples. Learn the difference between mutable and immutable in Python to write efficient programs."
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
Learn how to reverse a string in Python with various methods, detailed explanations, and FAQs in this comprehensive guide.
F-Strings in Python
Learn how to use f-strings in Python for fast and efficient string formatting. Explore syntax, examples, and benefits of using Python f-strings
Python len() Function EASY
In this article, we will learn about a Python len() Function. 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 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
Quick Sort in Python: Learn how it efficiently sorts arrays by using a pivot to partition and recursively sort subarrays with clear examples.
Deque() in Python EASY
Learn Python's deque() from the collections module—an efficient double-ended queue with O(1) append and pop from both ends, plus real examples.
Author kaido
0 upvotes
Append in Python EASY
Discover the Python List append() Method with meaning, syntax, and examples. Learn how to use append in Python effectively, with tips and advantages.
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
Logging in Python records input, output, processes, and results, helping track program flow, debug errors, and monitor performance efficiently.
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.

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.
Python Lists Methods EASY
Lists Methods in Python: Python list methods are containers that can hold any type of value. Learn Python list functions with examples.
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
Learn the difference between Python’s append() and extend() methods with syntax, examples, and when to use each for adding elements to a list.
How to Find the Length of a List 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.
Python List Reverse() Method EASY
Learn how to reverse a list in Python using slicing, reverse() method, and reversed() function with simple examples to boost coding efficiency.
Author Alisha
0 upvotes
Lists in Python EASY
Learn about Python Lists—ordered, mutable collections that support duplicates and mixed data types. Master list operations with clear syntax and examples.
Lists vs Tuples EASY
In the following article, we discuss briefly Lists and Tuples and examine the differences between them using some examples.
N Queens Problem in Python Using Backtracking-3 EASY
In this article, we're looking into the Python solution for the N Queens problem, exploring how backtracking—a fundamental concept in computer science—plays a crucial role.
Nested List in Python EASY
Explore nested lists in Python, learn how they work, and master them with clear examples to improve coding skills and handle complex data easily.
Arrays in Python (Beginner’s Guide with Examples) EASY
Python arrays are data structures that store multiple elements of the same type, allowing efficient indexing, manipulation, and iteration over the collection.
Dictionary and Sets in Python
Python Dictionary and Set explained with examples. Learn functions, key differences, and implementations to improve coding efficiency and data handling.
Priority Queue using Python
In this blog, we will discuss the implementation of priority queue using python, as well as its properties and mechanics.
Methods of Dictionary EASY
Learn Python dictionary methods with examples. Explore how to add, update, delete, and manage key-value pairs efficiently for better coding and data handling.
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
Learn about Python’s defaultdict—how it differs from a regular dictionary, its syntax, and real-world use cases to simplify key-value data handling.
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 EASY
Learn Strings in Python with syntax, functions, and examples. Explore string operations and methods to handle and manipulate text efficiently.
String Slicing in Python EASY
Learn how to use string slicing in Python to extract parts of strings efficiently. Master this essential technique for handling text data in Python.
String replace() Method in Python EASY
Learn how to use the Python replace() method to replace substrings in strings. See syntax, examples, and use cases for efficient string manipulation.
Python String Concatenation EASY
Learn how to concatenate strings in Python with different methods, operators, and examples. Master Python string concatenation for efficient coding
Author Tisha
0 upvotes
Capitalize() in Python EASY
Python capitalize() method explained with examples. Learn how to capitalize strings, convert the first letter to uppercase, and handle text formatting
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
The reduce() function in Python is used to apply a given function cumulatively to the items of an iterable (like a list) from left to right, reducing the iterable to a single value
Multiline String in Python EASY
Python multiline strings are created using triple quotes (''' or """). These allow strings to span multiple lines, preserving line breaks and formatting within the string
Empty Set in Python EASY
Learn about the Empty Set in Python, how to create it using set() or {}, its properties, and practical uses in programming with examples.
Python Program to Find the Factorial of a Number EASY
Learn how to calculate the factorial of a number in Python using recursion, for-loop, and more. Includes program, output, and detailed explanation.