怎么用python写窗口程序

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教程。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎么用python写窗口程序