Answers for "tkinter simple application"

0

tkinter simple application

#simple application with tkinter

from tkinter import *
window=Tk()
# add widgets here

window.title('Hello Python')
window.geometry("300x200+10+20")
window.mainloop()
Posted by: Guest on June-02-2021

Browse Popular Code Answers by Language