Answers for "how to open a window with tkinter"

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
3

make a window tkinter

#!/usr/bin/python

import Tkinter
top = Tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()
Posted by: Guest on May-23-2020

Code answers related to "how to open a window with tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language