用python编译程序包含一个文本框和一个按钮,每点击一次按钮文本框里的数字加一,文本框里的初始数字为0
时间: 2024-05-05 14:15:50 浏览: 84
Python文本框与按钮
以下是用Python tkinter模块编写的程序:
```python
from tkinter import *
# 创建主窗口
root = Tk()
# 设置窗口标题
root.title('计数器')
# 设置窗口大小
root.geometry('200x100')
# 创建文本框和按钮
count = 0
text = StringVar()
text.set(count)
label = Label(root, textvariable=text, font=('Arial', 20))
label.pack()
def add():
global count
count += 1
text.set(count)
button = Button(root, text='加一', command=add)
button.pack()
# 进入主循环
root.mainloop()
```
运行程序后会出现一个窗口,其中包含一个初始值为0的文本框和一个按钮。每点击一次按钮,文本框里的数字就会加一。
阅读全文