#!/usr/bin/python
############
# Hello_Label.py
# This program opens up a Tkinker Widget.
############ 

from Tkinter import *
window = Frame()
window.pack()
Label(window, text='Hello').pack(side=TOP)
Label().pack(side=BOTTOM)
window.mainloop()
