Posts by Satyam Singh Niranjan
Author Biographical Info: I am a Python enthusiast. I am utterly in love with the language. I love exploring and solving programming problems.
Hey programmer, This tutorial will help you with the concept of video streaming in Tkinter. We will achieve this by using a Frame and a Label widget and use some libraries of Pytho.... Read More
Hey folks, This tutorial will help you to close a window in PyQt5 in Python. This can be achieved by using a simple method of the QWidget class. We will use that method and learn h.... Read More
Hey folks, This tutorial will help you move an image in Tkinter in Python, in any direction and also bind key presses to trigger those movements. So for this project, we are going to use an in-built library of Python namely: Tkinter Using: from tkinter import * Move image in Tkinter – Python We will […] Read More
Hey folks, This tutorial will help you move text on canvas from right to left. So for this project, we are going to use an in-built library of python namely: Tkinter Using: from tkinter import * We’ll kick off with learning the functions used in this project: The Shift() function: def shift(): x1,y1,x2,y2 = canvas.bbox("marquee") […] Read More
Hey folks, This tutorial will help you play and create Tic-Tac-Toe, a very renowned game we have all got our hands on since our childhood. To do this task, we will use some in-built libraries of Python namely which are Tkinter and Random. Using: from tkinter import * from tkinter import messagebox import random as […] Read More
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