Python - Easy Articles
Python list() function takes any iterable as a parameter and returns a list. In Python iterable is the object you can iterate over. Some examples… Read More
Python input() function is used to take user input. By default, it returns the user input in form of a string. input() Function  Syntax:  input(prompt)… Read More
In this article, we will discuss how to Iterate over Tuples in Dictionary in Python.  Method 1: Using index We can get the particular tuples… Read More
App Routing means mapping the URLs to a specific function that will handle the logic for that URL. Modern web frameworks use more meaningful URLs… Read More
We are living in a digital world that is completely driven by chunks of code. Every industry depends on software for its proper functioning be… Read More
We can automate a Python script to send WhatsApp messages. In this article, we will learn the easiest ways using pywhatkit module that the website… Read More
A boolean expression results in two values(True, False) similar to this a boolean variable can also be assigned either (True, False). Here False keyword represents… Read More
In this article, we will code a python script to find duplicate files in the file system or inside a particular folder.  Method 1: Using… Read More
In this article, we will discuss how to use while True in Python. While loop is used to execute a block of code repeatedly until… Read More
Image classification is one of the supervised machine learning problems which aims to categorize the images of a dataset into their respective categories or labels.… Read More
Prerequisites: Introduction to REST API  REST stands for Representational State Transfer and is an architectural style used in modern web development. It defines a set… Read More
In this article, we will use image processing to count the number of Objects using OpenCV in Python. Module needed OpenCv: OpenCv is an open-source… Read More
Python dictionaries are powerful data structures that allow you to store and retrieve data using key-value pairs. Appending an item to a list within a… Read More
In this article, we are going to see how to plot multiple time series Dataframe into single plot.  If there are multiple time series in… Read More
Given a Binary Tree, the task is to find the sum of leaf nodes at every level of the given tree. Examples: Input: Output:0063012Explanation:Level 1:… Read More
In this article, we are going to see how to create a telegram bot using Python. In recent times Telegram has become one of the… Read More
In this article, we will discuss how to iterate over a nested dictionary in Python. Nested dictionary means dictionary inside a dictionary and we are… Read More
SQL stands for Structured Query Language and is a computer language that we use to interact with a relational database. SQL is a tool for… Read More
Flask is a micro web framework written in python. Micro-framework is normally a framework with little to no dependencies on external libraries. Though being a… Read More
In this article, we are going to see the Olympics analysis using Python. The modern Olympic Games or Olympics are leading international sports events featuring summer and winter… Read More