In this video I’ll show you how to resize a window dynamically with Tkinter and Python!
We already know how to change the default size of our tkinter window:
root.geometry(“800×800”)
But how do we update that size after the program starts running? Since the dimensions are passed into the function surrounded by quotation marks, we have to actually substitute in variables.
I’ll show you how to do that in this video…
Add comment