我们希望使用 Tkinter 制作一个10道单选题的小测试,其中每道题都有“是”和“否”两个选项。
- 我们希望在用户选择了答案后,能够自动判别答案是否正确并计算得分。
- 我们希望将得分传递给其他类,以便在所有题目回答完后显示最终得分。
1.2 技术细节:
- 使用 Tkinter 创建一个带有10个题目的单选题测试应用程序。
- 使用 IntVar() 创建一个变量来存储每个单选题的答案。
- 使用 Radiobutton() 创建“是”和“否”两个单选按钮,并将它们绑定到变量。
- 使用按钮创建“Enter”按钮,当用户点击按钮时,将调用函数来处理答题结果。
- 在函数中,检查用户的答案是否正确,并相应地计算得分。
- 将得分传递给其他类,以便在所有题目回答完后显示最终得分。
2. 解决方案
2.1 创建类:
class Question_1_Window(tk.Toplevel):
def __init__(self, parent):
tk.Toplevel.__init__(self, parent)
# 创建题干标签
self.text = tk.Label(self, width=75, height=4, text = "1) Do you have the time to do at least twenty minutes of prefect duty each week?")
self.text.pack(side="top", fill="both", expand=True)
# 创建单选题变量
self.question_1_Var = IntVar()
# 创建“是”单选按钮
Yes_1 = Radiobutton(self, text = "Yes", variable = self.question_1_Var, value=1, height=5, width = 20)
Yes_1.pack()
# 创建“否”单选按钮
No_1 = Radiobutton(self, text = "No", variable = self.question_1_Var, value=2, height=5, width = 20)
No_1.pack()
# 创建“Enter”按钮
Enter_1 = Button(self, text= "Enter", width=10, command = self.calculate_score_1)
Enter_1.pack()
# 计算得分的方法
def calculate_score_1(self):
Enter_1.config(state="disabled")
if (self.question_1_Var.get() == 1) and not (self.question_1_Var.get() == 2):
print("calculate score has worked") #test lines
self.score = self.score + 1
else:
print("not worked") #testlines
# 创建主窗口
root = tk.Tk()
# 创建10个问题窗口
Question_1_Window(root)
Question_2_Window(root)
...
Question_10_Window(root)
# 启动主窗口
root.mainloop()
2.2 传递变量:
- 在每个类中定义一个名为
score
的变量,该变量用于存储该题目的得分。- 在每个类中,在
calculate_score_1()
函数中,将该题目的得分添加到score
变量中。- 在主窗口中,创建一个名为
total_score
的变量,用于存储所有题目的总得分。- 在每个类中,在
calculate_score_1()
函数中,将该题目的得分添加到total_score
变量中。- 在主窗口中,在
mainloop()
函数中,输出total_score
变量的值,显示最终得分。
2.3 代码示例:
# 在每个类中定义一个名为 score 的变量,该变量用于存储该题目的得分。
class Question_1_Window(tk.Toplevel):
def __init__(self, parent):
tk.Toplevel.__init__(self, parent)
...
self.score = 0 # 初始化得分
...
# 计算得分的方法
def calculate_score_1(self):
Enter_1.config(state="disabled")
if (self.question_1_Var.get() == 1) and not (self.question_1_Var.get() == 2):
print("calculate score has worked") #test lines
self.score = self.score + 1 # 将该题目的得分添加到 score 变量中
else:
print("not worked") #testlines
# 在主窗口中,创建一个名为 total_score 的变量,用于存储所有题目的总得分。
root = tk.Tk()
total_score = 0 # 初始化总得分
# 创建10个问题窗口
Question_1_Window(root)
Question_2_Window(root)
...
Question_10_Window(root)
# 在每个类中,在 calculate_score_1() 函数中,将该题目的得分添加到 total_score 变量中。
class Question_2_Window(tk.Toplevel):
def __init__(self, parent):
tk.Toplevel.__init__(self, parent)
...
self.score = 0 # 初始化得分
...
# 计算得分的方法
def calculate_score_2(self):
Enter_2.config(state="disabled")
if (self.question_2_Var.get() == 1) and not (self.question_2_Var.get() == 2):
print("calculate score has worked") #test lines
self.score = self.score + 1 # 将该题目的得分添加到 score 变量中
total_score = total_score + self.score # 将该题目的得分添加到 total_score 变量中
else:
print("not worked") #testlines
# 在主窗口中,在 mainloop() 函数中,输出 total_score 变量的值,显示最终得分。
root.mainloop()
print("Final score:", total_score)