python 教程 第十九章、 图形界面编程

来源:互联网 发布:网络教育本科文凭 编辑:程序博客网 时间:2024/06/03 22:47

第十九章、 图形界面编程

import Tkinter
top = Tkinter.Tk() 
hello = Tkinter.Label(top, text='Hello World!')
hello.pack()
quit = Tkinter.Button(top, text='QUIT',command=top.quit)
quit.pack(fill=Tkinter.X, expand=1) 
Tkinter.mainloop()