I\'m programming a little game with tkinter and briefly, I\'m stuck.
I have a kind od starting menu, in which are two buttons and one label.
If I just create
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.