stacky-bit
0
Q:

python tkinter window size

# 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)
4
window = Tk()
#set window size
window.geometry("widthxheight")
4
# Where w is a widget:
w.winfo_height()
w.winfo_width()
1
#import statement
from tkinter import *
#create GUI Tk() variable
gui = Tk()
#set window size
gui.geometry("widthxheight")
0

New to Communities?

Join the community