I have a program which creates a window where a message is displayed according to a check box.
How can I make the window size constant when the message is displayed
Below code will fix root = tk.Tk() to its size before it was called:
root = tk.Tk()
root.resizable(False, False)