python tkinter 篮球赛犯规
时间: 2023-12-13 14:04:40 浏览: 79
以下是一个使用Python Tkinter GUI库实现的篮球赛犯规计数器的示例代码:
```python
import tkinter as tk
class Application(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.master = master
self.pack()
self.create_widgets()
def create_widgets(self):
self.foul_count = 0
self.quit = tk.Button(self, text="退出", fg="red",
command=self.master.destroy)
self.quit.pack(side="bottom")
self.foul_label = tk.Label(self, text="犯规次数: 0")
self.foul_label.pack(side="top")
self.foul_button = tk.Button(self, text="犯规", command=self.add_foul)
self.foul_button.pack(side="top")
def add_foul(self):
self.foul_count += 1
self.foul_label.config(text="犯规次数: {}".format(self.foul_count))
root = tk.Tk()
app = Application(master=root)
app.mainloop()
```
这个程序创建了一个窗口,其中包含一个标签和一个按钮。标签显示当前犯规次数,按钮用于增加犯规次数。每次点击按钮时,程序将犯规次数加1,并更新标签的文本。
阅读全文