How can I get the screen size in Tkinter? July 29, 2023 by Tarik import tkinter as tk root = tk.Tk() screen_width = root.winfo_screenwidth() screen_height = root.winfo_screenheight()