Posts by Shrimad Mishra

Author Biographical Info: Pursuing BE. Loves Programing.

How to print particular JSON value in Python

By Shrimad Mishra

Hi, everyone in this post we will learn how we can print particular JSON value in Python. what is the JSON file? JSON stands for JavaScript Object Notation and it is used to store .... Read More

Clone and Run a Django Project from Github

By Shrimad Mishra

Hi, Everyone When we clone a Django Project from Github or we copy from anywhere, we are not able to run that project on our system. So in this post, I will tell you how to run tha.... Read More

Smallest Sum Contiguous Subarray in Python

By Shrimad Mishra

What is Subarray? Subarray is the slice from the given array which is contiguous(i.e occupy consecutive positions). It inherently maintains the order of the elements. Let us take a.... Read More

Print the Nodes at the given distance K from the given Node in Python

By Shrimad Mishra

Our task is to Print the Nodes at the given distance K from the given Node in Python. In Python, we can make use of the inbuild modules of the tree to do this task. But I use the b.... Read More

Chat Bot Using NLTK in Python

By Shrimad Mishra

Hi, guys in this post we are going to learn how to make a Chat-Bot using NLTK in Python. In this topic, we will be coming across many new things. First of all What is the NLTK? NLT.... Read More

How to Resize an Image using Seam Carving Algorithm and Streamlit in Python

By Shrimad Mishra

Hey, Everyone Today we are going to learn how to use Seam Carving Algorithm to resize an image, and also we will use Streamlit to provide a user-friendly interface. Before diving i.... Read More

Create Multiple Subplots using Matplotlib Subplot in Python

By Shrimad Mishra

Hi, everyone in the post we are going to learn how we can Create Multiple Subplots using Matplotlib Subplot in Python. So Let’s start the learning part:- Python provides us a.... Read More

Image Viewer Using Tkinter In Python

By Shrimad Mishra

Hello, Everyone… In this post, we are going to build an Image Viewer In Python Using Tkinter. Tkinter is an inbuilt module in Python by which you can make a GUI. We are going.... Read More