Posts from Python

Python next() Function with examples

By Ranjeet V

This tutorial discusses the python next() function with examples. This is an in-built function that helps us to iterate over an iterator if the length has not been given. next() fu.... Read More

Understanding timeit in Python

By Pradeep Kumar

In this tutorial, we will learn about timeit module in Python. Python provides various methods to determine the execution time of a piece of code. One way is to use the Python inbu.... Read More

Python string rpartition()

By Nagi Reddy

This tutorial will give us some knowledge about the use of the rpatition() function in Python programming language. string rpartition() in Python The rpartition() function is using.... Read More

How to use numpy.argmax() in Python

By Anish

In this tutorial, we will learn how to use numpy.argmax() in Python using a few simple examples. Using numpy.argmax() in Python In Python, numpy.argmax() returns the indices of the.... Read More

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

Related Posts