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.

Video streaming in Tkinter with Python

By Satyam Singh Niranjan

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

Close a window in PyQt5 in Python

By Satyam Singh Niranjan

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

Move Image in Tkinter in Python

Move Image in Tkinter in Python

By Satyam Singh Niranjan | January 31, 2020

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

Move Text from right to left in Tkinter

Move Text from right to left in Tkinter

By Satyam Singh Niranjan | January 30, 2020

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

Tic-Tac-Toe GUI in Python Using Tkinter

Tic-Tac-Toe GUI in Python Using Tkinter

By Satyam Singh Niranjan |

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

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

Related Posts