from tkinter import *

root = Tk()
root.title("Our amazing Python window!!")

w = Label(root, text="Hello Tkinter - one of Python's tools for creating GUIs!")
w.pack()

root.mainloop()
