GUI Tk Python

from Tkinter import *
class PackDemo( Frame ):
   def __init__( self ):
      Frame.__init__( self )
      self.master.title( "Packing Demo" )
      self.master.geometry( "400x150" )
      self.pack( expand = YES, fill = BOTH )
      self.button4 = Button( self, text = "expand = YES, fill = Y" )
      self.button4.pack( side = RIGHT, expand = YES, fill = Y )   
     
def main():
   PackDemo().mainloop()
if __name__ == "__main__":
   main()