SyntaxFix
Write A Post
Hire A Developer
Questions
Here is the most simple way.
import tkinter as tk root = tk.Tk() root.geometry('200x200') root.resizable(width=0, height=0) root.mainloop()
I don't think there is anything to specify. It's pretty straight forward.