Mega Code Archive

 
Categories / Python Tutorial / Tkinker
 

Pack control to the top

from Tkinter  import * root = Tk()  Label(root, text='Hello GUI world!').pack(side=TOP)  root.mainloop()