Category Tkinter

Bingo! Implementation in Python

BINGO!

Bingo is one of the most popular games played by almost every kid in school. It is even liked by adults as it is played in many community gatherings, parties, and so on. There are many variants of this game,…

Bind in Tkinter: A Complete Guide

Bind in Tkinter

In this article let’s try to understand the concept of bind used in Tkinter. Before starting with this topic, we must remember that Python’s Tkinter package is used to design GUI-based interfaces. Tkinter has a variety of built-in functionalities and…

Bind and Events in Tkinter

Events in Tkinter

Hello readers, in this article let’s try to understand what events are in Tkinter. Before starting with this topic, we must remember that Python’s Tkinter package is used to design GUI-based interfaces. Tkinter has a variety of built-in functionalities and…

How to set the font size in Tkinter?

Tkinter Font Size Featured Image

In this article, we are going to learn how to change the font size of the text in Tkinter. Font size refers to how large the characters displayed on the screen are. It is crucial to use proper font size…

Tkinter Colors – A Complete Guide

Tkinter Colours Cover Image

Tkinter is an inbuilt module available in Python for developing Graphical User Interfaces (GUI). It allows us to develop desktop applications. Tkinter is very simple and easy to work with. It provides us with different widgets like button, canvas, label,…

Tkinter Create Oval – A Quick Guide

Drawing Different Shapes Using Tkinter

Hola Coders! In this article, we’ll be drawing different shapes using Tkinter. In the previous blog, the topic of Drawing lines using Tkinter was just a good start to this state-of-the-art concept. The reader can view it on this URL.…

How to Draw Different Shapes Using Tkinter

Drawing Different Shapes In Python Tkinter

In this tutorial, we’ll learn how to draw different shapes in Tkinter such as square, circle, rectangle, oval, arc, etc. In Tkinter, the canvas class is used to draw different shapes in our application window. Functions to draw shapes are…