How to make a Tkinter window not resizable? How to make a Tkinter window not resizable? python python

How to make a Tkinter window not resizable?


The resizable method on the root window takes two boolean parameters to describe whether the window is resizable in the X and Y direction. To make it completely fixed in size, set both parameters to False:

root.resizable(False, False)