Creating a Simple GUI window using python

#Creating a simple gui window.
from tkinter import *
window = Tk() # Here you can set any name in the place of 'window'
window.geometry("720x480")
window.title("It is a title bar.")

window.mainloop()

Comments