tkinter make window big enough to fit all widgets on it code example
Example 1: tkinter make window not resizable
root.resizable(False, False)
Example 2: how to make a resizable python tkinter window have a limit
win.wm_minsize(180, 120)
#Change the two numbers to the minimum window width and minimum window height.