Aplikasi Sederhana Tkinter
#simple application with tkinter
from tkinter import *
window=Tk()
# add widgets here
window.title('Hello Python')
window.geometry("300x200+10+20")
window.mainloop()
Grieving Goat