发布时间:2019-09-06 08:53:45编辑:auto阅读(1767)
Python也可以创建界面,需要导入tkinter
具体看代码:
from tkinter import *
def btnClick():
textLabel['text']='我点击了按钮'
root = Tk(className="我的第一个窗口程序");
textLabel = Label(root,text = '提示显示',justify=LEFT,padx=10)
textLabel.pack(side = TOP)
btn = Button(root)
btn['text']='点击测试'
btn['command'] = btnClick
btn.pack(side = BOTTOM)
mainloop()
运行结果:
点击按钮:
上一篇: python 打印矩阵
下一篇: scala调用python
47863
46424
37314
34760
29332
25990
24945
19967
19564
18050
5806°
6433°
5947°
5975°
7080°
5926°
5963°
6456°
6418°
7798°