Author name: Arnvh Sharma

Changing Tkinter window size through variables

While designing graphical applications in Python using Tkinter, sometimes you may want to be able to dynamically alter the size of the window according to user actions or any other conditions. Tkinter offers several ways of changing window properties, including size. In this blog we will be changing Tkinter window size through variables. Method 1: …

Changing Tkinter window size through variables Read More »

Why You Should Avoid from tkinter import * in Python

Python’s Tkinter library is a powerful building block for graphical user interfaces. While it’s easier to use from tkinter import * for quick access, it can lead to several problems in larger, more complex codes. In this blog, we will discuss the various reasons one needs to avoid using from tkinter import * and provide better …

Why You Should Avoid from tkinter import * in Python Read More »

Scroll to Top