当前位置:   article > 正文

Python课程设计——单项选择题答题与管理系统(已利用tkinter库实现图形化界面)_用python制作答题系统

用python制作答题系统

本文的单项选择题与管理系统通过面向对象实现,调用tkinter完成了基本GUI界面,文件存储方面采用txt格式化存储、读取数据,主要功能围绕基本的“增删改查”展开,详细的程序介绍可以私聊我本人获取ppt和实验报告,仅供学习和参考,转载需标明出处。

以下是部分效果图

 

 管理员密码默认为123456,后续可以在代码里更改管理员密码。

 

需要特别注意的是,目前程序仍存在一定的弊端,例如题目信息如果过长,就会影响到布局,建议不要录入题目信息或选项信息过长的题目,也可以根据具体需求,自行改到代码。

Part1:程序框架设计

 

程序框架设计上,我设计了三个类,其中两个类用来封装数据,一个类用来封装方法,如上所示图表,Problem类封装了试题的题号、题目、选项A、B、C、D、正确答案这些数据,Student类中我们有学生的用户名、账号、密码、成绩、答题时间这些成员,Manage类中封装了我们程序所需要的方法,程序整体结构分明,层次清晰,代码规范整齐。

其中,save_information方法和read_information方法之后我将着重讲解,log_in和student_login方法通过同样的底层逻辑实现,都是对循环遍历的运用来判断登录成功的条件是否满足,add_problem方法和del_problem、del_student方法是系统操作最常见的“增删查改”四大操作的“增和删”,通过input函数输入该输入的信息,将输入的信息整体打包成一个字典,字典特有的key值之后会帮助我们很好的提取所需要的数据,再将字典append到学生/试卷列表中,实现添加。而rank_student方法和analysis_student方法是对学生成绩的基本处理,其中涉及到利用sorted函数对列表实现快速排序,最后的test_begin先向函数传递学生姓名的参数,再循环遍历文件中的试题信息,来判断你的答案是否正确并计分,最后遍历文件中的学生信息来匹配函数接受到的学生姓名,将计分的成绩更新到学生的信息中,此外,还调用了time库来记录学生的答题时间信息。

   test_begin方法的实现

Part2:文件读取和写入

存储文件的时候,由于我们只能向文件写入str类型的数据,而在程序中,我们文件里的数据是放在了一个字典嵌套的列表中的,为了方便我们读取数据,我们在写入数据时,每两个数据中我们写入一个逗号作为整个字符串的分隔符。

读取数据的时候,我们读取的初始数据是一个字符串,用split函数初步处理后,就变成了一个列表,但此时还没有满足我们所需要的字典嵌套列表,所以我们进一步将整个列表按照字典的需求分成一个个的字典,在放到一个新的列表中,此时的新列表就能满足我们的使用需求。以下的图示以学生信息的读取和写入为例。

 

 

文件读取的实现

文件写入的实现

 

为了进一步理解文件读取这一部分的实现,我们设计了以下的流程图来帮助我们更生动形象的理解数据从文件到我们所需要的要求所经历过的步骤。如下图所示。

数据的处理过程

Part3:GUI设计

在GUI设计方面,我们通过tkinter库来实现,tkinter是python的内置库是一套完整的GUI开发模块的组合或套件,这些模块共同提供了强大的跨平台GUI编程的功能,所有的源码文件位于Python安装目录中lib\tkinter文件夹。

tkinter与turtle类似,无需额外安装,使用起来非常方便。tkinter提供了很多控件和消息事件,可以很快入手,非常适合开发具有界面的轻量级应用程序。

图形化界面

在布局方面,我采用了place的布局方式,同时,在答题功能的图形化过程中,还引入了frame框架来实现滑块和文本框的联动,初步掌握了GUI的布局设计,了解到事件的处理、控件之间的命令的运行逻辑。

 

以下是完整的程序代码

系统设计部分:

  1. import os
  2. import time
  3. class Problem: # 定义试题信息的类
  4. def __init__(self, num, question, choice_a, choice_b, choice_c, choice_d, answer):
  5. self.num = num
  6. self.question = question
  7. self.choice_a = choice_a
  8. self.choice_b = choice_b
  9. self.choice_c = choice_c
  10. self.choice_d = choice_d
  11. self.answer = answer
  12. class Student: # 定义学生信息的类
  13. def __init__(self, name, user_name, user_password, grade, usetime):
  14. self.name = name
  15. self.user_name = user_name
  16. self.user_password = user_password
  17. self.grade = grade
  18. self.usetime = usetime
  19. # 基本功能都由这个类的方法实现
  20. class Manage:
  21. def __init__(self):
  22. self.StudentInfo = []
  23. self.ProblemInfo = []
  24. @staticmethod
  25. def main_menu():
  26. print("***************")
  27. print("1.管理员端登录")
  28. print("2.学生端登录")
  29. print("3.注册学生端账户")
  30. print("4.退出系统")
  31. print("***************")
  32. @staticmethod
  33. def administrator_menu():
  34. print("***************")
  35. print("1.录入试题信息")
  36. print("2.查看学生信息")
  37. print("3.排名学生成绩")
  38. print("4.查看试题信息")
  39. print("5.分析总体答题情况")
  40. print("6.删除学生信息")
  41. print("7.删除试题信息")
  42. print("8.返回上级")
  43. print("***************")
  44. @staticmethod
  45. def student_menu():
  46. print("***************")
  47. print("1.开始答题")
  48. print("2.返回上级")
  49. print("***************")
  50. @staticmethod
  51. def log_in():
  52. psw = int(input("请输入管理员密码"))
  53. if psw == 123456:
  54. Manage.administrator_menu()
  55. while 1:
  56. operate_administrator = int(input("请输入要选择的操作"))
  57. if operate_administrator == 1:
  58. Manage.add_problem(start)
  59. Manage.administrator_menu()
  60. if operate_administrator == 2:
  61. Manage.show_student(start)
  62. if operate_administrator == 3:
  63. Manage.rank_student(start)
  64. if operate_administrator == 4:
  65. Manage.show_problem(start)
  66. if operate_administrator == 5:
  67. Manage.analysis_student(start)
  68. if operate_administrator == 6:
  69. Manage.del_student(start)
  70. if operate_administrator == 7:
  71. Manage.del_problem(start)
  72. if operate_administrator == 8:
  73. Manage.main_menu()
  74. return
  75. else:
  76. print("账号或密码错误,已返回上级!")
  77. Manage.main_menu()
  78. def register(self):
  79. print("***************")
  80. new_student = Student(name=input("输入你的用户名"),
  81. user_name=input("输入你的账号"),
  82. user_password=input("输入你的密码"),
  83. grade="暂无成绩",
  84. usetime="暂无信息")
  85. temp = {"用户名": new_student.name, "账号": new_student.user_name, "密码": new_student.user_password,
  86. "成绩": new_student.grade, "答题时间": new_student.usetime}
  87. # 这里的new_student不能直接传入列表,要放在一个字典里把数据”打包“过去
  88. self.StudentInfo.append(temp)
  89. print("注册成功!")
  90. self.save_information()
  91. self.main_menu()
  92. def student_login(self):
  93. print("***************")
  94. temp1 = input("请输入你的账号")
  95. temp2 = input("请输入你的密码")
  96. if len(self.StudentInfo) == 0:
  97. # 如果学生信息为空,说明还没有账号注册,当作账号或密码错误处理
  98. print("账号或密码错误!已返回上级")
  99. self.main_menu()
  100. return
  101. for stu in self.StudentInfo: # 循环遍历列表判断账号和密码是否正确
  102. if stu["账号"] == temp1 and stu["密码"] == temp2:
  103. print("登录成功!欢迎你%s同学" % (stu["用户名"]))
  104. self.student_menu()
  105. while 1:
  106. operate_student = int(input("请输入要选择的操作"))
  107. if operate_student == 1:
  108. self.test_begin(stu["用户名"])
  109. self.main_menu()
  110. return
  111. if operate_student == 2:
  112. self.main_menu()
  113. return
  114. else:
  115. print("账号或密码错误!已返回上级")
  116. self.main_menu()
  117. def add_problem(self):
  118. new_problem = Problem(num=input("输入题号"),
  119. question=input("输入题目"),
  120. choice_a=input("输入选项A"),
  121. choice_b=input("输入选项B"),
  122. choice_c=input("输入选项C"),
  123. choice_d=input("输入选项D"),
  124. answer=input("输入正确答案"))
  125. temp = {"题号": new_problem.num, "题目": new_problem.question, "选项A": new_problem.choice_a,
  126. "选项B": new_problem.choice_b, "选项C": new_problem.choice_c, "选项D": new_problem.choice_d,
  127. "正确答案": new_problem.answer}
  128. self.ProblemInfo.append(temp)
  129. # 和学生信息一样,试题信息也要打包在一个字典里面后添加到列表
  130. print("录入成功!")
  131. self.save_information()
  132. def del_student(self):
  133. user_name = input("输入要删除的学生账号")
  134. index = 0
  135. for stu in self.StudentInfo:
  136. if stu["账号"] == user_name:
  137. del self.StudentInfo[index]
  138. self.save_information()
  139. print("删除成功")
  140. self.administrator_menu()
  141. return
  142. index += 1
  143. print("未查询到学生信息!")
  144. self.administrator_menu()
  145. return
  146. def del_problem(self):
  147. num = input("输入要删除的题目题号")
  148. index = 0
  149. for pro in self.ProblemInfo:
  150. if pro["题号"] == num:
  151. del self.ProblemInfo[index]
  152. self.save_information()
  153. print("删除成功")
  154. self.administrator_menu()
  155. return
  156. index += 1
  157. print("未查询到试题信息!")
  158. self.administrator_menu()
  159. return
  160. def show_student(self):
  161. if len(self.StudentInfo) == 0:
  162. print("暂无学生信息")
  163. self.administrator_menu()
  164. return
  165. for stu in self.StudentInfo:
  166. print(stu)
  167. input("按任意键继续")
  168. self.administrator_menu()
  169. return
  170. def show_problem(self):
  171. if len(self.ProblemInfo) == 0:
  172. print("暂无试题信息")
  173. for pro in self.ProblemInfo:
  174. print("%s:%s\n"
  175. "A.%s\n"
  176. "B.%s\n"
  177. "C.%s\n"
  178. "D.%s\n"
  179. "正确答案:%s"
  180. % (pro["题号"], pro["题目"], pro["选项A"], pro["选项B"], pro["选项C"], pro["选项D"],
  181. pro["正确答案"]))
  182. input("按任意键继续")
  183. self.administrator_menu()
  184. return
  185. def test_begin(self, name):
  186. # 答题功能的主要功能由循坏遍历列表和time模板实现
  187. if len(self.ProblemInfo) == 0:
  188. print("暂无试题信息")
  189. self.student_menu()
  190. return
  191. grade = 0
  192. print("Test Begin!")
  193. start_time = time.time()
  194. for pro in self.ProblemInfo:
  195. print("%s:%s\n"
  196. "A.%s\n"
  197. "B.%s\n"
  198. "C.%s\n"
  199. "D.%s\n"
  200. % (pro["题号"], pro["题目"], pro["选项A"], pro["选项B"], pro["选项C"], pro["选项D"]))
  201. answer = input("输入你的答案")
  202. if answer == pro["正确答案"]:
  203. grade += 5
  204. end_time = time.time()
  205. for stu in self.StudentInfo:
  206. if stu["用户名"] == name:
  207. stu["成绩"] = str(grade)
  208. stu["答题时间"] = str(int((end_time - start_time)))
  209. break
  210. print("Test Over!\n你的成绩是%d分,用时%d秒" % (grade, end_time - start_time))
  211. self.save_information()
  212. return
  213. def rank_student(self):
  214. if len(start.StudentInfo) == 0:
  215. print("暂无学生信息")
  216. return
  217. tool = self.StudentInfo
  218. for del_zero in tool:
  219. if del_zero["成绩"] == "暂无成绩":
  220. del_zero["成绩"] = -1
  221. temp = sorted(tool, key=lambda x: int(x["成绩"]), reverse=True)
  222. rank = 1
  223. for stu in temp:
  224. if stu["成绩"] == -1:
  225. stu["成绩"] = "暂无成绩"
  226. print("第%d名:%s %s分 用时%s秒" % (rank, stu["用户名"], stu["成绩"], stu["答题时间"]))
  227. rank += 1
  228. input("按任意键继续")
  229. self.administrator_menu()
  230. return
  231. def analysis_student(self):
  232. # 分析参加考试的人数,平均分
  233. if len(self.StudentInfo) == 0:
  234. print("暂无答题信息")
  235. self.administrator_menu()
  236. return
  237. print("本次测试有%d道题目" % (len(self.ProblemInfo)))
  238. print("满分%d分" % (len(self.ProblemInfo) * 5))
  239. student_num = 0
  240. total = 0
  241. for stu in self.StudentInfo:
  242. if stu["成绩"] == "暂无成绩":
  243. continue
  244. total += int(stu["成绩"])
  245. student_num += 1
  246. if student_num == 0:
  247. print("暂无答题信息")
  248. self.administrator_menu()
  249. return
  250. print("参与测试%d人" % student_num)
  251. print("平均分:%0.2f" % (total / student_num))
  252. input("按任意键继续")
  253. self.administrator_menu()
  254. return
  255. def save_information(self): # 以字符串的数据类型向文件中写入
  256. with open("StudentInfo.txt", "w", encoding="utf_8") as fp:
  257. for stu in self.StudentInfo:
  258. fp.write(stu["用户名"])
  259. fp.write(",")
  260. fp.write(stu["账号"])
  261. fp.write(",")
  262. fp.write(stu["密码"])
  263. fp.write(",")
  264. fp.write(stu["成绩"])
  265. fp.write(",")
  266. fp.write(stu["答题时间"])
  267. fp.write(",")
  268. fp.close() # 写入的时候数据之间用”,“分割开,读取的时候再用split函数分割分别读取
  269. with open("ProblemInfo.txt", "w", encoding="utf_8") as fp1:
  270. for pro in self.ProblemInfo:
  271. fp1.write(pro["题号"])
  272. fp1.write(",")
  273. fp1.write(pro["题目"])
  274. fp1.write(",")
  275. fp1.write(pro["选项A"])
  276. fp1.write(",")
  277. fp1.write(pro["选项B"])
  278. fp1.write(",")
  279. fp1.write(pro["选项C"])
  280. fp1.write(",")
  281. fp1.write(pro["选项D"])
  282. fp1.write(",")
  283. fp1.write(pro["正确答案"])
  284. fp1.write(",")
  285. fp1.close()
  286. return
  287. def read_information(self):
  288. if not os.path.exists("StudentInfo.txt"):
  289. print("暂无学生信息,跳过读取!")
  290. else:
  291. with open("StudentInfo.txt", "r", encoding="utf_8") as fp:
  292. stu = fp.read()
  293. stu = stu.split(",") # 文件的字符串split后变成列表类型,再通过列表循环读取,每次读取一批数据打包成一个字典,再append到程序当前存储信息的列表中
  294. stu.pop()
  295. for i in range(len(stu) // 5):
  296. stu_pass = {"用户名": stu[5 * i + 0],
  297. "账号": stu[5 * i + 1],
  298. "密码": stu[5 * i + 2],
  299. "成绩": stu[5 * i + 3],
  300. "答题时间": stu[5 * i + 4]}
  301. self.StudentInfo.append(stu_pass)
  302. fp.close()
  303. print("学生信息读取成功!")
  304. if not os.path.exists("ProblemInfo.txt"):
  305. print("暂无试卷信息,跳过读取!")
  306. else:
  307. with open("ProblemInfo.txt", "r", encoding="utf_8") as fp1:
  308. pro = fp1.read()
  309. pro = pro.split(",")
  310. pro.pop()
  311. for j in range(len(pro) // 7):
  312. pro_pass = {"题号": pro[7 * j + 0],
  313. "题目": pro[7 * j + 1],
  314. "选项A": pro[7 * j + 2],
  315. "选项B": pro[7 * j + 3],
  316. "选项C": pro[7 * j + 4],
  317. "选项D": pro[7 * j + 5],
  318. "正确答案": pro[7 * j + 6]}
  319. self.ProblemInfo.append(pro_pass)
  320. fp1.close()
  321. print("试卷信息读取成功!")
  322. start = Manage()

 GUI设计部分:

  1. import time
  2. import tkinter as tk
  3. import SystemDesign
  4. start = SystemDesign.Manage()
  5. start.read_information()
  6. # root:主菜单 root2:管理员菜单 root3:管理员登录界面 root4:学生登陆界面
  7. def administrator_menu():
  8. root.withdraw()
  9. root2 = tk.Tk()
  10. root2.title("单项选择题答题与管理系统")
  11. root2.geometry("900x700")
  12. root2.config(background='pink')
  13. bt1 = tk.Button(root2, text='1.录入试题信息', font=("Helvetica", 30), background='pink',
  14. command=lambda: func_ad_1(root2))
  15. bt1.place(x=300, y=20)
  16. bt2 = tk.Button(root2, text='2.查看学生信息', font=("Helvetica", 30), background='pink',
  17. command=lambda: func_ad_2(root2))
  18. bt2.place(x=300, y=100)
  19. bt3 = tk.Button(root2, text='3. 排名学生成绩', font=("Helvetica", 30), background='pink',
  20. command=lambda: func_ad_3(root2))
  21. bt3.place(x=300, y=180)
  22. bt4 = tk.Button(root2, text='4.查看试题信息', font=("Helvetica", 30), background='pink',
  23. command=lambda: func_ad_4(root2))
  24. bt4.place(x=300, y=260)
  25. bt5 = tk.Button(root2, text='5.分析总体答题情况', font=("Helvetica", 30), background='pink',
  26. command=lambda: func_ad_5(root2))
  27. bt5.place(x=300, y=340)
  28. bt6 = tk.Button(root2, text='6.删除试题信息', font=("Helvetica", 30), background='pink',
  29. command=lambda: func_ad_6(root2))
  30. bt6.place(x=300, y=420)
  31. bt7 = tk.Button(root2, text='7.删除学生信息', font=("Helvetica", 30), background='pink',
  32. command=lambda: func_ad_7(root2))
  33. bt7.place(x=300, y=500)
  34. bt8 = tk.Button(root2, text='8.返回上级', font=("Helvetica", 30), background='pink',
  35. command=lambda: func_ad_8(root2))
  36. bt8.place(x=300, y=580)
  37. def func_ad_1(x): # 管理员功能一
  38. x.destroy()
  39. root_func1 = tk.Tk()
  40. root_func1.title("单项选择题答题与管理系统")
  41. root_func1.geometry("900x700")
  42. root_func1.config(background='pink')
  43. func1title = tk.Label(root_func1, text="输入你的试题信息", font=("Helvetica", 40), background="pink")
  44. func1title.pack()
  45. func1_lb1 = tk.Label(root_func1, text="题号", font=("Helvetica", 20), background="pink")
  46. func1_lb1.place(x=220, y=80)
  47. func1_entry1 = tk.Entry(root_func1, width=45)
  48. func1_entry1.place(x=320, y=90)
  49. func1_lb2 = tk.Label(root_func1, text="题目", font=("Helvetica", 20), background="pink")
  50. func1_lb2.place(x=220, y=120)
  51. func1_entry2 = tk.Entry(root_func1, width=45)
  52. func1_entry2.place(x=320, y=130)
  53. func1_lb3 = tk.Label(root_func1, text="选项A", font=("Helvetica", 20), background="pink")
  54. func1_lb3.place(x=220, y=160)
  55. func1_entry3 = tk.Entry(root_func1, width=45)
  56. func1_entry3.place(x=320, y=170)
  57. func1_lb4 = tk.Label(root_func1, text="选项B", font=("Helvetica", 20), background="pink")
  58. func1_lb4.place(x=220, y=200)
  59. func1_entry4 = tk.Entry(root_func1, width=45)
  60. func1_entry4.place(x=320, y=210)
  61. func1_lb5 = tk.Label(root_func1, text="选项C", font=("Helvetica", 20), background="pink")
  62. func1_lb5.place(x=220, y=240)
  63. func1_entry5 = tk.Entry(root_func1, width=45)
  64. func1_entry5.place(x=320, y=250)
  65. func1_lb6 = tk.Label(root_func1, text="选项D", font=("Helvetica", 20), background="pink")
  66. func1_lb6.place(x=220, y=280)
  67. func1_entry6 = tk.Entry(root_func1, width=45)
  68. func1_entry6.place(x=320, y=290)
  69. func1_lb7 = tk.Label(root_func1, text="正确答案", font=("Helvetica", 20), background="pink")
  70. func1_lb7.place(x=200, y=320)
  71. func1_entry7 = tk.Entry(root_func1, width=45)
  72. func1_entry7.place(x=320, y=330)
  73. func1_bt1 = tk.Button(root_func1, text="确定", font=("Helvetica", 20), background="pink",
  74. command=lambda: func_ad_1_1(func1_entry1.get(), func1_entry2.get(), func1_entry3.get(),
  75. func1_entry4.get(), func1_entry5.get(), func1_entry6.get(),
  76. func1_entry7.get(), root_func1))
  77. func1_bt1.place(x=460, y=380)
  78. func1_bt2 = tk.Button(root_func1, text="取消", font=("Helvetica", 20), background="pink",
  79. command=lambda: func_back(root_func1))
  80. func1_bt2.place(x=560, y=380)
  81. def func_ad_1_1(x1, x2, x3, x4, x5, x6, x7, root_func1): # 功能一的衍生函数
  82. root_func1.destroy()
  83. new_problem = SystemDesign.Problem(num=x1,
  84. question=x2,
  85. choice_a=x3,
  86. choice_b=x4,
  87. choice_c=x5,
  88. choice_d=x6,
  89. answer=x7)
  90. temp = {"题号": new_problem.num, "题目": new_problem.question, "选项A": new_problem.choice_a,
  91. "选项B": new_problem.choice_b, "选项C": new_problem.choice_c, "选项D": new_problem.choice_d,
  92. "正确答案": new_problem.answer}
  93. start.ProblemInfo.append(temp)
  94. start.save_information()
  95. message = tk.Tk()
  96. message.geometry("400x150")
  97. message.title("单项选择题答题与管理系统")
  98. message_lb = tk.Label(message, text="添加成功!", font=("等线", 30))
  99. message_lb.config(fg="red")
  100. message_lb.pack()
  101. message_bt = tk.Button(message, text="返回", height=1, width=8, command=lambda: func_back(message))
  102. message_bt.place(x=150, y=75)
  103. def func_back(x):
  104. x.destroy()
  105. administrator_menu()
  106. def func_ad_2(x):
  107. x.destroy()
  108. root_func2 = tk.Tk()
  109. root_func2.title("单项选择题答题与管理系统")
  110. root_func2.geometry("800x600")
  111. bt1 = tk.Button(root_func2, text="返回", width=600, font=("Helvetica", 20), command=lambda: func_back(root_func2))
  112. bt1.pack()
  113. frame_func2 = tk.Frame(root_func2)
  114. frame_func2.pack()
  115. scrollbar1 = tk.Scrollbar(frame_func2)
  116. scrollbar1.pack(side="right", fill="y")
  117. scrollbar2 = tk.Scrollbar(frame_func2, orient="horizontal")
  118. scrollbar2.pack(side="bottom", fill="x")
  119. list_func2 = tk.Listbox(frame_func2, selectmode='browse', width=500, height=20, font=("等线", 30),
  120. xscrollcommand=scrollbar2.set, yscrollcommand=scrollbar1.set)
  121. for stu in start.StudentInfo:
  122. list_func2.insert("end", stu)
  123. list_func2.pack()
  124. scrollbar1.config(command=list_func2.yview)
  125. scrollbar2.config(command=list_func2.xview)
  126. def func_ad_3(r):
  127. r.destroy()
  128. root_func3 = tk.Tk()
  129. root_func3.title("单项选择题答题与管理系统")
  130. root_func3.geometry("800x600")
  131. bt1 = tk.Button(root_func3, text="返回", width=600, font=("Helvetica", 20), command=lambda: func_back(root_func3))
  132. bt1.pack()
  133. frame_func3 = tk.Frame(root_func3)
  134. frame_func3.pack()
  135. scrollbar1 = tk.Scrollbar(frame_func3)
  136. scrollbar1.pack(side="right", fill="y")
  137. scrollbar2 = tk.Scrollbar(frame_func3, orient="horizontal")
  138. scrollbar2.pack(side="bottom", fill="x")
  139. list_func3 = tk.Listbox(frame_func3, selectmode='browse', width=500, height=20, font=("等线", 30),
  140. xscrollcommand=scrollbar2.set, yscrollcommand=scrollbar1.set)
  141. tool = start.StudentInfo
  142. for del_zero in tool:
  143. if del_zero["成绩"] == "暂无成绩":
  144. del_zero["成绩"] = -1
  145. temp = sorted(tool, key=lambda x: int(x["成绩"]), reverse=True)
  146. list_stu = []
  147. for stu in temp:
  148. if stu["成绩"] == -1:
  149. stu["成绩"] = "暂无成绩"
  150. stu_pass = {"用户名": stu["用户名"],
  151. "成绩": stu["成绩"],
  152. "答题用时": stu["答题时间"]}
  153. list_stu.append(stu_pass)
  154. for stu in list_stu:
  155. list_func3.insert("end", stu)
  156. list_func3.pack()
  157. scrollbar1.config(command=list_func3.yview)
  158. scrollbar2.config(command=list_func3.xview)
  159. def func_ad_4(x):
  160. x.destroy()
  161. root_func4 = tk.Tk()
  162. root_func4.title("单项选择题答题与管理系统")
  163. root_func4.geometry("800x600")
  164. bt1 = tk.Button(root_func4, text="返回", width=600, font=("Helvetica", 20), command=lambda: func_back(root_func4))
  165. bt1.pack()
  166. frame_func4 = tk.Frame(root_func4)
  167. frame_func4.pack()
  168. scrollbar1 = tk.Scrollbar(frame_func4)
  169. scrollbar1.pack(side="right", fill="y")
  170. scrollbar2 = tk.Scrollbar(frame_func4, orient="horizontal")
  171. scrollbar2.pack(side="bottom", fill="x")
  172. list_func2 = tk.Listbox(frame_func4, selectmode='browse', width=500, height=20, font=("等线", 30),
  173. xscrollcommand=scrollbar2.set, yscrollcommand=scrollbar1.set)
  174. for stu in start.ProblemInfo:
  175. list_func2.insert("end", stu)
  176. list_func2.pack()
  177. scrollbar1.config(command=list_func2.yview)
  178. scrollbar2.config(command=list_func2.xview)
  179. def func_ad_5(x):
  180. x.destroy()
  181. root_func5 = tk.Tk()
  182. root_func5.title("单项选择题答题与管理系统")
  183. root_func5.geometry("800x600")
  184. root_func5.config(background="pink")
  185. bt1 = tk.Button(root_func5, text="返回", width=600, font=("Helvetica", 20), command=lambda: func_back(root_func5))
  186. bt1.pack()
  187. lb1 = tk.Label(root_func5, background="pink", text="本次测试有%d道题目" % len(start.ProblemInfo),
  188. font=("Helvetica", 40))
  189. lb1.pack()
  190. lb2 = tk.Label(root_func5, background="pink", text="满分%d分" % (len(start.ProblemInfo) * 5),
  191. font=("Helvetica", 40))
  192. lb2.pack()
  193. student_num = 0
  194. total = 0
  195. for stu in start.StudentInfo:
  196. if stu["成绩"] == "暂无成绩":
  197. continue
  198. total += int(stu["成绩"])
  199. student_num += 1
  200. lb3 = tk.Label(root_func5, background="pink", text="参与测试%d人" % student_num, font=("Helvetica", 40))
  201. lb3.pack()
  202. lb3 = tk.Label(root_func5, background="pink", text="平均分:%0.2f" % (total / student_num), font=("Helvetica", 40))
  203. lb3.pack()
  204. def func_ad_6(x):
  205. x.destroy()
  206. root_func6 = tk.Tk()
  207. root_func6.geometry("600x300")
  208. root_func6.title("单项选择题答题与管理系统")
  209. lb_func6 = tk.Label(root_func6, text="请输入要删除的试题题号!", font=("Helvetica", 20))
  210. lb_func6.pack()
  211. entry_func6 = tk.Entry(root_func6)
  212. entry_func6.place(x=220, y=60)
  213. bt1 = tk.Button(root_func6, height=1, width=8, text="确认",
  214. command=lambda: func_ad_6_1(entry_func6.get()))
  215. bt1.place(x=220, y=100)
  216. bt2 = tk.Button(root_func6, height=1, width=8, text="取消", command=lambda: func_back(root_func6))
  217. bt2.place(x=300, y=100)
  218. def func_ad_6_1(x):
  219. index = 0
  220. for pro in start.ProblemInfo:
  221. if pro["题号"] == x:
  222. del start.ProblemInfo[index]
  223. start.save_information()
  224. message = tk.Tk()
  225. message.geometry("400x150")
  226. message.title("单项选择题答题与管理系统")
  227. message_lb = tk.Label(message, text="删除成功!", font=("等线", 30))
  228. message_lb.config(fg="red")
  229. message_lb.pack()
  230. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  231. message_bt.place(x=150, y=75)
  232. return
  233. index += 1
  234. message = tk.Tk()
  235. message.geometry("400x150")
  236. message.title("单项选择题答题与管理系统")
  237. message_lb = tk.Label(message, text="未找到试题信息", font=("等线", 30))
  238. message_lb.config(fg="red")
  239. message_lb.pack()
  240. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  241. message_bt.place(x=150, y=75)
  242. def func_ad_7(x):
  243. x.destroy()
  244. root_func7 = tk.Tk()
  245. root_func7.geometry("600x300")
  246. root_func7.title("单项选择题答题与管理系统")
  247. lb_func7 = tk.Label(root_func7, text="请输入要删除的学生账号!", font=("Helvetica", 20))
  248. lb_func7.pack()
  249. entry_func7 = tk.Entry(root_func7)
  250. entry_func7.place(x=220, y=60)
  251. bt1 = tk.Button(root_func7, height=1, width=8, text="确认",
  252. command=lambda: func_ad_7_1(entry_func7.get()))
  253. bt1.place(x=220, y=100)
  254. bt2 = tk.Button(root_func7, height=1, width=8, text="取消", command=lambda: func_back(root_func7))
  255. bt2.place(x=300, y=100)
  256. def func_ad_7_1(x):
  257. index = 0
  258. for pro in start.StudentInfo:
  259. if pro["账号"] == x:
  260. del start.StudentInfo[index]
  261. start.save_information()
  262. message = tk.Tk()
  263. message.geometry("400x150")
  264. message.title("单项选择题答题与管理系统")
  265. message_lb = tk.Label(message, text="删除成功!", font=("等线", 30))
  266. message_lb.config(fg="red")
  267. message_lb.pack()
  268. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  269. message_bt.place(x=150, y=75)
  270. return
  271. index += 1
  272. message = tk.Tk()
  273. message.geometry("400x150")
  274. message.title("单项选择题答题与管理系统")
  275. message_lb = tk.Label(message, text="未找到学生信息", font=("等线", 30))
  276. message_lb.config(fg="red")
  277. message_lb.pack()
  278. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  279. message_bt.place(x=150, y=75)
  280. def func_ad_8(x):
  281. x.destroy()
  282. root.deiconify()
  283. def student_menu(x):
  284. index = 0
  285. global grade
  286. grade = 0
  287. start_time = time.time()
  288. root.withdraw()
  289. root_stu = tk.Tk()
  290. root_stu.title("单项选择题答题与管理系统")
  291. root_stu.geometry("900x700")
  292. root_stu.config(background='pink')
  293. lb1 = tk.Label(root_stu, text="欢迎你%s同学" % x, font=("Helvetica", 40), background='pink')
  294. lb1.pack()
  295. bt1 = tk.Button(root_stu, text='1.开始答题', font=("Helvetica", 30), background='pink',
  296. command=lambda: func_stu_1(root_stu, x, index, start_time))
  297. bt1.place(x=320, y=240)
  298. bt2 = tk.Button(root_stu, text='2.返回上级', font=("Helvetica", 30), background='pink',
  299. command=lambda: func_stu_2(root_stu))
  300. bt2.place(x=320, y=360)
  301. def func_stu_1(win, name, index_pro, start_time):
  302. win.destroy()
  303. root_func1 = tk.Tk()
  304. root_func1.title("单项选择题答题与管理系统")
  305. root_func1.geometry("900x700")
  306. root_func1.config(background='pink')
  307. func1title = tk.Label(root_func1, text="做下一题前请先提交当前题目!", font=("Helvetica", 40), background="pink")
  308. func1title.pack()
  309. temp = start.ProblemInfo[index_pro]
  310. pro_num = tk.Label(root_func1, text="%s." % temp["题号"], font=("Helvetica", 30), background="pink", )
  311. pro_num.place(x=200, y=80)
  312. pro_question = tk.Label(root_func1, text="%s" % temp["题目"], font=("Helvetica", 30), background="pink")
  313. pro_question.place(x=260, y=80)
  314. pro_a = tk.Label(root_func1, text="A.%s" % temp["选项A"], font=("Helvetica", 30), background="pink")
  315. pro_a.place(x=220, y=160)
  316. pro_b = tk.Label(root_func1, text="B.%s" % temp["选项B"], font=("Helvetica", 30), background="pink")
  317. pro_b.place(x=220, y=240)
  318. pro_c = tk.Label(root_func1, text="C.%s" % temp["选项C"], font=("Helvetica", 30), background="pink")
  319. pro_c.place(x=220, y=320)
  320. pro_d = tk.Label(root_func1, text="D.%s" % temp["选项D"], font=("Helvetica", 30), background="pink")
  321. pro_d.place(x=220, y=400)
  322. pro_answer = tk.Label(root_func1, text="你的选项为", font=("Helvetica", 30), background="pink")
  323. pro_answer.place(x=220, y=480)
  324. answer_get = tk.Entry(root_func1, font=("Helvetica", 30), width=2)
  325. answer_get.place(x=450, y=480)
  326. bt_ensure = tk.Button(root_func1, text="提 交", command=lambda: check_answer(answer_get.get(), temp["正确答案"]),
  327. font=("Helvetica", 30), background="pink")
  328. bt_ensure.place(x=220, y=560)
  329. if index_pro == len(start.ProblemInfo) - 1: # 目前只能下一题,且无法返回更改
  330. for stu in start.StudentInfo:
  331. if stu["用户名"] == name:
  332. stu["成绩"] = str(grade)
  333. stu["答题时间"] = str(int(time.time() - start_time))
  334. start.save_information()
  335. bt_end = tk.Button(root_func1, text="结束考试", command=lambda: func_stu_1_1(root_func1),
  336. font=("Helvetica", 30), background="pink")
  337. bt_end.place(x=480, y=560)
  338. else:
  339. bt_down = tk.Button(root_func1, text="下一题",
  340. command=lambda: func_stu_1(root_func1, name, index_pro + 1, start_time),
  341. font=("Helvetica", 30),
  342. background="pink")
  343. bt_down.place(x=480, y=560)
  344. def check_answer(x, y):
  345. global grade
  346. if x == y:
  347. grade += 5
  348. def func_stu_1_1(x):
  349. x.destroy()
  350. message = tk.Tk()
  351. message.geometry("400x150")
  352. message.title("单项选择题答题与管理系统")
  353. message_lb = tk.Label(message, text="答题结束!", font=("等线", 30))
  354. message_lb.config(fg="red")
  355. message_lb.pack()
  356. message_bt = tk.Button(message, text="返回", height=1, width=8, command=lambda: func_stu_2(message))
  357. message_bt.place(x=150, y=75)
  358. def func_stu_1_2(x):
  359. x.destroy()
  360. root.deiconify()
  361. def func_stu_2(x):
  362. x.destroy()
  363. root.deiconify()
  364. def check_psw(x, y):
  365. if x == "123456":
  366. y.destroy()
  367. administrator_menu()
  368. else:
  369. message = tk.Tk()
  370. message.geometry("300x150")
  371. message.title("单项选择题答题与管理系统")
  372. message_lb = tk.Label(message, text="密码错误!", font=("等线", 30))
  373. message_lb.config(fg="red")
  374. message_lb.pack()
  375. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  376. message_bt.place(x=120, y=75)
  377. def administrator_login():
  378. root3 = tk.Tk()
  379. root3.geometry("600x300")
  380. root3.title("单项选择题答题与管理系统")
  381. ad_login = tk.Label(root3, text="请输入管理员密码!", font=("Helvetica", 20))
  382. ad_login.pack()
  383. ad_login_entry = tk.Entry(root3, show="*")
  384. ad_login_entry.place(x=220, y=60)
  385. ad_login_bt1 = tk.Button(root3, height=1, width=8, text="确认",
  386. command=lambda: check_psw(ad_login_entry.get(), root3))
  387. ad_login_bt1.place(x=220, y=100)
  388. ad_login_bt2 = tk.Button(root3, height=1, width=8, text="取消", command=root3.destroy)
  389. ad_login_bt2.place(x=300, y=100)
  390. def student_login():
  391. root4 = tk.Tk()
  392. root4.geometry("600x300")
  393. root4.title("单项选择题答题与管理系统")
  394. st_login = tk.Label(root4, text="请输入账号和密码!", font=("Helvetica", 20))
  395. st_login.pack()
  396. st_lb1 = tk.Label(root4, text="账号", font=6)
  397. st_lb1.place(x=200, y=60)
  398. st_login_entry1 = tk.Entry(root4)
  399. st_login_entry1.place(x=250, y=60)
  400. st_lb2 = tk.Label(root4, text="密码", font=6)
  401. st_lb2.place(x=200, y=100)
  402. st_login_entry2 = tk.Entry(root4)
  403. st_login_entry2.place(x=250, y=100)
  404. st_login_bt1 = tk.Button(root4, height=1, width=8, text="确认",
  405. command=lambda: student_check(st_login_entry1.get(), st_login_entry2.get(), root4))
  406. st_login_bt1.place(x=240, y=130)
  407. st_login_bt2 = tk.Button(root4, height=1, width=8, text="取消", command=root4.destroy)
  408. st_login_bt2.place(x=320, y=130)
  409. '''
  410. bt2 = tk.Button(root, text='1.开始答题', font=("Helvetica", 30), background='pink')
  411. bt2.place(x=300, y=180)
  412. bt3 = tk.Button(root, text='2.返回上级', font=("Helvetica", 30), background='pink')
  413. bt3.place(x=300, y=260)
  414. '''
  415. def student_check(x, y, z): # 检查学生的登录信息
  416. for stu in start.StudentInfo:
  417. if x == stu["账号"] and y == stu["密码"]:
  418. z.destroy()
  419. student_menu(stu["用户名"])
  420. break
  421. else:
  422. message = tk.Tk()
  423. message.geometry("400x150")
  424. message.title("单项选择题答题与管理系统")
  425. message_lb = tk.Label(message, text="账号或密码错误!", font=("等线", 30))
  426. message_lb.config(fg="red")
  427. message_lb.pack()
  428. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  429. message_bt.place(x=150, y=75)
  430. def student_register(): # 注册学生信息页面
  431. root5 = tk.Tk()
  432. root5.geometry("600x300")
  433. root5.title("单项选择题答题与管理系统")
  434. st_login = tk.Label(root5, text="填写你的注册信息", font=("Helvetica", 20))
  435. st_login.pack()
  436. st_lb1 = tk.Label(root5, text="用户名", font=6)
  437. st_lb1.place(x=185, y=60)
  438. st_login_entry1 = tk.Entry(root5)
  439. st_login_entry1.place(x=250, y=60)
  440. st_lb2 = tk.Label(root5, text="账号", font=6)
  441. st_lb2.place(x=200, y=100)
  442. st_login_entry2 = tk.Entry(root5)
  443. st_login_entry2.place(x=250, y=100)
  444. st_lb2 = tk.Label(root5, text="密码", font=6)
  445. st_lb2.place(x=200, y=140)
  446. st_login_entry3 = tk.Entry(root5)
  447. st_login_entry3.place(x=250, y=140)
  448. st_login_bt1 = tk.Button(root5, height=1, width=8, text="确认",
  449. command=lambda: add_student(st_login_entry1.get(), st_login_entry2.get(),
  450. st_login_entry3.get(), root5))
  451. st_login_bt1.place(x=240, y=180)
  452. st_login_bt2 = tk.Button(root5, height=1, width=8, text="取消", command=root5.destroy)
  453. st_login_bt2.place(x=320, y=180)
  454. def add_student(x, y, z, root5): # 注册成功后的消息弹窗页面
  455. root5.destroy()
  456. new_student = SystemDesign.Student(name=x,
  457. user_name=y,
  458. user_password=z,
  459. grade="暂无成绩",
  460. usetime="暂无信息")
  461. temp = {"用户名": new_student.name, "账号": new_student.user_name, "密码": new_student.user_password,
  462. "成绩": new_student.grade, "答题时间": new_student.usetime}
  463. # 这里的new_student不能直接传入列表,要放在一个字典里把数据”打包“过去
  464. start.StudentInfo.append(temp)
  465. start.save_information()
  466. message = tk.Tk()
  467. message.geometry("400x150")
  468. message.title("单项选择题答题与管理系统")
  469. message_lb = tk.Label(message, text="添加成功!", font=("等线", 30))
  470. message_lb.config(fg="red")
  471. message_lb.pack()
  472. message_bt = tk.Button(message, text="返回", height=1, width=8, command=message.destroy)
  473. message_bt.place(x=150, y=75)
  474. root = tk.Tk()
  475. root.title("单项选择题答题与管理系统")
  476. root.geometry("900x600")
  477. root.config(background='pink')
  478. main_label1 = tk.Label(root, text='单项选择题答题与管理系统', font=("Helvetica", 40), background='pink')
  479. main_label1.pack()
  480. main_bt1 = tk.Button(root, text='1.管理员登录', font=("Helvetica", 30), background='pink', command=administrator_login)
  481. main_bt1.place(x=300, y=100)
  482. main_bt2 = tk.Button(root, text='2.学生端登录', font=("Helvetica", 30), background='pink', command=student_login)
  483. main_bt2.place(x=300, y=180)
  484. main_bt3 = tk.Button(root, text='3. 注册学生账户', font=("Helvetica", 30), background='pink', command=student_register)
  485. main_bt3.place(x=300, y=260)
  486. main_bt4 = tk.Button(root, text='4.退出系统', font=("Helvetica", 30), background='pink', command=exit)
  487. main_bt4.place(x=300, y=340)
  488. global grade
  489. root.mainloop()

若文章存在错误之处,欢迎指正!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/371216
推荐阅读
相关标签
  

闽ICP备14008679号