Answers for "how to set where the new window will be created in tkinter python"

1

how to create window in tkinter

import tkinter as tk

window = tk.Tk() #Creates a window
window.title("Trial") # Sets a title for the window
window.geometry(520,850)# Size of window optional
window.minisize(520,850) # Minimum size of window

window.mainloop()# Sets visiblility to true
Posted by: Guest on May-15-2021

Code answers related to "how to set where the new window will be created in tkinter python"

Python Answers by Framework

Browse Popular Code Answers by Language