Rock Paper Scissors in Python using GUI Tkinter

Rock Paper Scissors in Python using GUI Tkinter

By Satyam Singh Niranjan | January 24, 2020

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

Digital stopwatch GUI Application in Python – PyQt5

By Tuhin Mitra

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

Voice assistant with Python

By Tuhin Mitra

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

Binary heap implementation in Python

By Sachin Verma

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

How to count the number of words in a string in Java

By Debdeep Das

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

cv2.erode() function in OpenCV – Python

By Abhirup Majumder

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

How to count repeated substring in a given string in Python

By Aarushi Dwivedi

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

How to Implement Segment Tree in Python?

By Kakali Mukherjee

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

Related Posts