#!/usr/bin/python3

import tkinter as Tk

widget = Tk.Label(None, text="Hello World")
widget.pack()
widget.mainloop()
