Hey folks, This project will help you play and create Rock Paper Scissors GUI game in Python, a very renowned game we have all swayed our hands to since our childhood. So for this project, we are going to use some in-built libraries of python namely: Tkinter and Random. Using: from tkinter import * from […] Read More
In this post, I’ll be discussing how you can create a digital stopwatch GUI application using PyQt5 in Python. I will be using the QtDesigner utility of PyQt5 for designing t.... Read More
Here, I’ll be writing about, how you can create and modify your own voice assistant using Python and some of its modules. First you need to install some modules required for .... Read More
Hi guys, today we have got the topic binary heap in Python language. So basically, what is a binary heap? It is a non-hierarchial tree-based data structure which is an almost compl.... Read More
This tutorial consists of two ways to count the number of words in a string in Java. Using a String Tokenizer class. Using the CommandLine itself. But before that check this simpl.... Read More
In this tutorial, we are going to learn cv2.erode() function.This is basically an operation in Morphological Transformation. The function is actually packed in the OpenCV package i.... Read More
In this article, we will learn how to use the inbuilt count function using examples. Then we will see how to count repeated substring in a given string in Python. Python has a buil.... Read More
In this tutorial, we will learn what Segment Tree is and how to implement Segment Tree in Python with some non-recursive functions. This is a very important topic in Practical Data.... Read More