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