tkinter windows size code example

Example 1: set window size tkinter

# Change window_name to the name of the window object, i.e. root
window_name.geometry("500x500")
# To ensure widgets resize:
widget_name.pack(fill="both", expand=True)

Example 2: get size of window tkinter

# Where w is a widget:
w.winfo_height()
w.winfo_width()

Example 3: tkinter maximum window size

from tkinter import *
root = Tk()
root.maxsize(height, width)
root.minsize(height, width) #(69, 420)
root.mainloop()

Example 4: python tkinter define window size

window = Tk()
#set window size
window.geometry("widthxheight")