python GUI投票代码怎么写
时间: 2023-06-10 21:03:36 浏览: 207
你可以使用Python中的Tkinter库来编写GUI投票代码。
以下是一个简单的示例:
```
from tkinter import *
class Poll:
def __init__(self, master):
self.master = master
master.title("投票")
self.label = Label(master, text="请选择您的选项:")
self.label.pack()
self.option1 = Button(master, text="选项1", command=self.vote1)
self.option1.pack()
self.option2 = Button(master, text="选项2", command=self.vote2)
self.option2.pack()
self.vote1_count = 0
self.vote2_count = 0
def vote1(self):
self.vote1_count += 1
print("选项1得票数:" + str(self.vote1_count))
def vote2(self):
self.vote2_count += 1
print("选项2得票数:" + str(self.vote2_count))
root = Tk()
my_poll = Poll(root)
root.mainloop()
```
此代码创建了一个名为“投票”的GUI窗口,并在其中添加了两个按钮。每次按下一个按钮时,相应选项的得票数将增加,并在控制台中打印出来。
阅读全文