python手记 (16)

来源:互联网 发布:神女控数据覆盖 编辑:程序博客网 时间:2024/05/22 06:41
# -*- coding: utf-8 -*-import Tkintertop=Tkinter.Tk()hello=Tkinter.Label(top,text='hello')hello.pack()quit=Tkinter.Button(top,text='退出',command=top.quit,bg='red',fg='white')quit.pack(fill=Tkinter.X,expand=1)Tkinter.mainloop()

Tkinter界面