Answers for "create exact window size in python tkinter"

0

create exact window size in python tkinter

import tkinter as tk #import the module
window = tk.Tk() #set the window
window.geometry("400x400") #make the window a size (include as a stirng
window.mainloop() #load the window
Posted by: Guest on April-19-2022

Python Answers by Framework

Browse Popular Code Answers by Language