Answers for "set size of python screen"

0

screen size tkinter

import tkinter as tk

root = tk.Tk()

screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
Posted by: Guest on March-09-2020
5

python gui size

root.geometry('69x420')
Posted by: Guest on March-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language