翼度科技»论坛 编程开发 python 查看内容

HNU个人项目互评

7

主题

7

帖子

21

积分

新手上路

Rank: 1

积分
21
一、前言

这篇博客是对软件工程导论的个人项目进行互评,项目要求实现一个简单的中小学数学卷子自动生成程序。我的搭档谢先衍同学使用Python完成了项目,而我则是使用java。尽管语言不同增加了一定的阅读成本,但是接触到另一种新语言并体会编程者发挥语言特性独特的心得,确实是拓展了眼界。一个项目,最终归结到不同问题,无论用什么语言,面临的问题都是一致的,但是语言的特性和编程者的思想却是和而不同,由此给人以启发
二、要求

用户:

小学、初中和高中数学老师。
功能:

1、命令行输入用户名和密码,两者之间用空格隔开(程序预设小学、初中和高中各三个账号,具体见附表),如果用户名和密码都正确,将根据账户类型显示“当前选择为XX出题”,XX为小学、初中和高中三个选项中的一个。否则提示“请输入正确的用户名、密码”,重新输入用户名、密码;
2、登录后,系统提示“准备生成XX数学题目,请输入生成题目数量(输入-1将退出当前用户,重新登录):”,XX为小学、初中和高中三个选项中的一个,用户输入所需出的卷子的题目数量,系统默认将根据账号类型进行出题。每道题目的操作数在1-5个之间,操作数取值范围为1-100;
3、题目数量的有效输入范围是“10-30”(含10,30,或-1退出登录),程序根据输入的题目数量生成符合小学、初中和高中难度的题目的卷子(具体要求见附表)。同一个老师的卷子中的题目不能与以前的已生成的卷子中的题目重复(以指定文件夹下存在的文件为准,见5);
4、在登录状态下,如果用户需要切换类型选项,命令行输入“切换为XX”,XX为小学、初中和高中三个选项中的一个,输入项不符合要求时,程序控制台提示“请输入小学、初中和高中三个选项中的一个”;输入正确后,显示“”系统提示“准备生成XX数学题目,请输入生成题目数量”,用户输入所需出的卷子的题目数量,系统新设置的类型进行出题;
5、生成的题目将以“年-月-日-时-分-秒.txt”的形式保存,每个账号一个文件夹。每道题目有题号,每题之间空一行;
个人项目9月17日晚上10点以前提交至创新课程管理系统。提交方式:工程文件打包,压缩包名为“几班+姓名.rar”。迟交2天及以内者扣分,每天扣20%。迟交2天及以上者0分。
附表-1:账号密码

账户类型账户密码备注小学张三1123张三2123张三3123初中李四1123李四2123李四3123高中王五1123王五2123王五3123附表-2:小学、初中、高中题目难度要求

小学初中高中难度要求+,-,*./平方,开根号sin,cos,tan备注只能有+,-,*./和()题目中至少有一个平方或开根号的运算符题目中至少有一个sin,cos或tan的运算符‍
三、功能检查

背景

环境:Python 3.11.5
软件:VScode
登录

命令行输入用户名和密码,两者之间用空格隔开(程序预设小学、初中和高中各三个账号,具体见附表),如果用户名和密码都正确,将根据账户类型显示“当前选择为XX出题”,XX为小学、初中和高中三个选项中的一个。否则提示“请输入正确的用户名、密码”,重新输入用户名、密码
成功登录的情况


测试:错误的账号密码


在错误的情况下,提示“请输入正确的用户名、密码”
测试:不符合格式的账号密码


在输入含多个空格的输入后,判断格式错误
出题

登录后,系统提示“准备生成XX数学题目,请输入生成题目数量(输入-1将退出当前用户,重新登录):”,XX为小学、初中和高中三个选项中的一个,用户输入所需出的卷子的题目数量,系统默认将根据账号类型进行出题。每道题目的操作数在1-5个之间,操作数取值范围为1-100;
题目数量的有效输入范围是“10-30”(含10,30,或-1退出登录),程序根据输入的题目数量生成符合小学、初中和高中难度的题目的卷子(具体要求见附表)。同一个老师的卷子中的题目不能与以前的已生成的卷子中的题目重复
生成的题目将以“年-月-日-时-分-秒.txt”的形式保存,每个账号一个文件夹。每道题目有题号,每题之间空一行;
成功出题



成功按指定数目出题,并且附带题号,题与题之间空有一行,在对应的用户文件夹之下生成以时间为名的题目文件
退出


成功退出到上一页面
测试:不在范围内的输入


不在范围内的输入会提示范围
测试:不规范的输入


不和规范的输入会被认为是字符串,进而判断是否是切换选项
测试:间隔少于1s的快速输入

存放生成题目的文件是按时间命名的,最低单位是秒。如果快速输入,1秒中输入多次呢?


结果是生成了第一次的文件

切换

成功切换



生成了不同类型的题目,并成功存入对应的目录之下
测试:错误输入


匹配的字符串只有三种,此外的字符串都会触发提示

总结

功能的测试完备,符合文档的需求,可以说作者在编写代码的时候非常娴熟精准,落实到了文档的每一个功能实现之中。虽然在一个测试中出现了点小问题,但考虑到并非文档指明的需求,无伤大雅。

四、代码分析

代码

account.py
  1. #!/usr/bin/env python3.10.9
  2. # -*- coding: utf-8 -*-
  3. import json
  4. class Account(object):
  5.     """Account class.
  6.   
  7.     Attributes:
  8.         account: The account, such as '张三1'.
  9.         password: The password of the account.
  10.         grade: The corresponding grade of the account, to generate exam with
  11.             different difficuty.
  12.     """
  13.     def __init__(self, account, password, grade) -> None:
  14.         """Init the account."""
  15.         self.account = account
  16.         self.password = password
  17.         self.grade = grade
  18. class Accounts(object):
  19.     """Accounts class, to manage accounts.
  20.   
  21.     Attributes:
  22.         accounts: The accounts list, read from accounts.json.
  23.     """
  24.     def __init__(self) -> None:
  25.         """Read accounts from accounts.json to init the accounts list."""
  26.         self.accounts = []
  27.         with open("accounts.json", "r", encoding="utf-8") as f:
  28.             accounts_dir = json.loads(f.read())
  29.         for key in accounts_dir.keys():
  30.             for account in accounts_dir[key]:
  31.                 self.accounts.append(
  32.                     Account(account["account"], account["password"], key))
  33.     def check_account(self, account, password) -> str:
  34.         for acc in self.accounts:
  35.             if acc.account == account and acc.password == password:
  36.                 return acc.grade
  37.         return None
  38.     def login(self) -> (str, str):
  39.         """Login to the system.
  40.       
  41.         Returns:
  42.             account: The account try to login in.
  43.             grade: The corresponding grade of the account.
  44.         """
  45.         while True:
  46.             account_passwd = input("请输入用户名和密码,两者之间用空格隔开: ")
  47.             try:
  48.                 account, passwd = account_passwd.split(" ")
  49.             except:
  50.                 print("格式错误!")
  51.                 continue
  52.             grade = self.check_account(account, passwd)
  53.             if grade is None:
  54.                 print("请输入正确的用户名、密码!")
  55.             else:
  56.                 return account, grade
复制代码
优点


  • 清晰的代码结构: 代码使用了面向对象的方法,使用类来组织数据和功能,使代码具有良好的结构。
  • 良好的注释和文档字符串: 代码中有注释和文档字符串,解释了类和方法的功能,这有助于其他开发人员理解代码。
  • 封装性: 帐户数据和操作被封装在 Account​ 和 Accounts​ 类中,提高了代码的可维护性和可扩展性。
缺点


  • 代码耦合度高: Accounts​ 类直接依赖于文件 I/O 和 JSON 解析,这导致了代码的耦合度较高。最好将这些依赖项解耦,以便更容易进行单元测试和扩展。
examgenerator.py
  1. #!/usr/bin/env python3.10.9
  2. # -*- coding: utf-8 -*-
  3. from abc import ABC
  4. from abc import abstractmethod
  5. import os
  6. import random
  7. import re
  8. import time
  9. class ExamGenerator(ABC):
  10.     """Abstract class for exam generator.
  11.   
  12.     Attributes:
  13.         operators: The operators to use.
  14.     """
  15.     def __init__(self) -> None:
  16.         self.operators = ["+", "-", "*", "/"]
  17.     @abstractmethod
  18.     def generate(self, num_range: tuple) -> str:
  19.         """
  20.         Generate a math problem.
  21.         """
  22.     def unary_op(self, op: str, obj: str) -> str:
  23.         """Unary operator such as ^2, sqrt, sin, cos, tan.
  24.         If the operator is ^2, then the operator is behind the object, if the
  25.         operator is sqrt, sin, cos or tan, then the operator is before the
  26.         object. Otherwise, the operator is not used.
  27.               
  28.         Arguments:
  29.             op: The unary operator to use.
  30.             obj: The object to use the unary operator.
  31.          
  32.         Returns:
  33.             the result str of the object with the unary operator.
  34.         """
  35.         if op == "^2":
  36.             return f"({obj})^2"
  37.         elif op in ["sqrt", "sin", "cos", "tan"]:
  38.             return f"{op}({obj})"
  39.         else:
  40.             return obj
  41.       
  42.     def reverse(self, prob: str) -> str:
  43.         """Reverse the prob str if it's operators number is 2.
  44.       
  45.         Arguments:
  46.             prob: The prob str to reverse.
  47.          
  48.         Returns:
  49.             the reversed prob str.
  50.         """
  51.         pattern = r'\d+'  # Match the number using regular expression
  52.         prob = prob.replace("^2", "^")  # To avoid the ^2 operator being matched
  53.         matches = re.findall(pattern, prob)
  54.         if len(matches) == 2:
  55.             prob = prob.replace(matches[1], matches[0])
  56.             prob = prob.replace(matches[0], matches[1], 1)
  57.         prob = prob.replace("^", "^2")
  58.         return prob
  59.     def check_repeat(self, account: str, prob: str) -> bool:
  60.         """Check if the prob is repeated.
  61.       
  62.         Arguments:
  63.             account: The account using the program.
  64.             prob: The prob str to check.
  65.          
  66.         Returns:
  67.             True if the prob is repeated, otherwise False.
  68.         """
  69.         if os.path.exists(f"exams/{account}"):
  70.             for file in os.listdir(f"exams/{account}"):
  71.                 with open(f"exams/{account}/{file}", "r") as f:
  72.                     lines = f.readlines()[:-1:2]  # Remove the '\n'
  73.                     for line in lines:
  74.                         if (prob == line[4:-1] or  # Remove the prob index and space and '\n'
  75.                             self.reverse(prob) == line[4:-1]):
  76.                             return True
  77.         return False
  78.     def save_probs(self, account: str, probs_num: int) -> None:
  79.         """Save the probs to the file.
  80.       
  81.         Arguments:
  82.             account: The account using the program.
  83.             probs_num: The number of probs to generate.
  84.          
  85.         Returns:
  86.             None.
  87.         """
  88.         probs = []
  89.         for i in range(probs_num):
  90.             while True:
  91.                 prob = f"{self.generate()}="
  92.                 if ((prob not in probs) and
  93.                     (not self.check_repeat(account, prob))):
  94.                     break
  95.             probs.append(prob)
  96.         if not os.path.exists(f"exams/{account}"):
  97.             os.mkdir(f"exams/{account}")
  98.         # filename: 年-月-日-时-分-秒.txt
  99.         filename = f"{time.strftime('%Y-%m-%d-%H-%M-%S', time.localtime())}.txt"
  100.         with open(f"exams/{account}/{filename}", "w") as f:
  101.             index = 1
  102.             for prob in probs:
  103.                 space = "  " if index < 10 else " "  # Add space to align the index
  104.                 f.write(f"{index}.{space}{prob}\n\n")
  105.                 index += 1
  106. class ExamGenerator1(ExamGenerator):
  107.     """Exam generator for primary school."""
  108.     def __init__(self) -> None:
  109.         super().__init__()
  110.     def generate(self, nums_range=(1, 5)) -> str:
  111.         op_num = random.randint(nums_range[0], nums_range[1])
  112.         op = random.choice(self.operators)
  113.         if op_num == 1:
  114.             if nums_range[1] == 5:
  115.                 return self.generate((1, 5))  # If the result is only 1 number, generate again
  116.             else:
  117.                 return str(random.randint(1, 100))
  118.         elif op_num == 2:
  119.             left_op = self.generate((1, 1))
  120.             right_op = self.generate((1, 1))
  121.             if random.random() < 0.45 and nums_range[1] != 5:
  122.                 return f"({left_op}{op}{right_op})"  # 45% to add brackets
  123.             else:
  124.                 return f"{left_op}{op}{right_op}"
  125.         else:
  126.             left_op = self.generate((1, op_num // 2))
  127.             right_op = self.generate((1, op_num - op_num // 2))
  128.             if random.random() < 0.45 and nums_range[1] != 5:
  129.                 return f"({left_op}{op}{right_op})"
  130.             else:
  131.                 return f"{left_op}{op}{right_op}"
  132. class ExamGenerator2(ExamGenerator):
  133.     """Exam generator for junior high school."""
  134.     def __init__(self) -> None:
  135.         super().__init__()
  136.         self.operators.extend(["^2", "sqrt"])
  137.     def generate(self, nums_range=(1, 5)) -> str:
  138.         op_num = random.randint(nums_range[0], nums_range[1])
  139.         op = random.choice(self.operators)
  140.         op1 = random.choice(self.operators[:4])
  141.         if op_num == 1:
  142.             if op in self.operators[4:] and random.random() < 0.66:
  143.                 result = self.unary_op(op, str(random.randint(1, 100)))
  144.             else:
  145.                 result = str(random.randint(1, 100))
  146.         elif op_num == 2:
  147.             left_op = self.generate((1, 1))
  148.             right_op = self.generate((1, 1))
  149.             if op in ["^2", "sqrt"]:
  150.                 return self.unary_op(op, f"{left_op}{op1}{right_op}")
  151.             else:
  152.                 result = f"{left_op}{op}{right_op}"
  153.         else:
  154.             left_op = self.generate((1, op_num // 2))
  155.             right_op = self.generate((1, op_num - op_num // 2))
  156.             if op in ["^2", "sqrt"]:
  157.                 result = self.unary_op(op, f"{left_op}{op1}{right_op}")
  158.             else:
  159.                 result = f"{left_op}{op}{right_op}"
  160.         if (nums_range[1] == 5 and result.find("sqrt") == -1 and
  161.             result.find("^2") == -1):  # If the result don't contain sqrt or ^2, generate again
  162.             return self.generate((1, 5))
  163.         return result
  164. class ExamGenerator3(ExamGenerator):
  165.     """Exam generator for senior high school."""
  166.     def __init__(self) -> None:
  167.         super().__init__()
  168.         self.operators.extend(["^2", "sqrt", "sin", "cos", "tan"])
  169.     def generate(self, nums_range=(1, 5)) -> str:
  170.         op_num = random.randint(nums_range[0], nums_range[1])
  171.         op = random.choice(self.operators)
  172.         op1 = random.choice(self.operators[:4])
  173.         if op_num == 1:
  174.             if op in self.operators[4:] and random.random() < 0.66:
  175.                 result = self.unary_op(op, str(random.randint(1, 100)))
  176.             else:
  177.                 result = str(random.randint(1, 100))
  178.         elif op_num == 2:
  179.             left_op = self.generate((1, 1))
  180.             right_op = self.generate((1, 1))
  181.             if op in self.operators[4:]:
  182.                 result = self.unary_op(op, f"{left_op}{op1}{right_op}")
  183.             else:
  184.                 result = f"{left_op}{op}{right_op}"
  185.         else:
  186.             left_op = self.generate((1, op_num // 2))
  187.             right_op = self.generate((1, op_num - op_num // 2))
  188.             if op in self.operators[4:]:
  189.                 result = self.unary_op(op, f"{left_op}{op1}{right_op}")
  190.             else:
  191.                 result = f"{left_op}{op}{right_op}"
  192.         if (nums_range[1] == 5 and result.find("sin") == -1 and
  193.             result.find("cos") == -1 and result.find("tan") == -1):  # If the result don't contain sin, cos or tan, generate again
  194.             return self.generate((1, 5))
  195.         return result
复制代码
优点

1 抽象类和多态: ExamGenerator​ 是一个抽象基类,定义了一个抽象方法 generate​,并且在子类中进行了实现。这利用了Python的多态性,允许不同子类提供不同的实现
缺点


  • 部分魔法数值: 代码中出现了一些魔法数值,如 0.45、0.66 等,这些值没有明确的解释和注释,可能会导致代码的可读性和可维护性降低。最好将这些数值提取为常量,并提供相关注释。
  • 文件操作错误处理不足: 代码中的文件操作没有足够的错误处理机制,如果文件无法创建或写入,代码会引发异常而无法处理。
  • 生成题目的方法命名不一致: 不同级别的生成器子类中的 generate​ 方法签名不一致,这可能会导致混淆和错误。最好统一方法名。
  • 未考虑边界情况: 代码中未考虑一些边界情况,如生成的数值范围、一元运算符的频率等,这可能导致生成的题目不够多样化或有问题。
main.py
  1. #!/usr/bin/env python3.10.9
  2. # -*- coding: utf-8 -*-
  3. from account import Accounts
  4. from examgenerator import ExamGenerator
  5. from examgenerator import ExamGenerator1
  6. from examgenerator import ExamGenerator2
  7. from examgenerator import ExamGenerator3
  8. def Exam_generator(grade: str) -> ExamGenerator:
  9.     """Return the corresponding ExamGenerator according to the grade.
  10.   
  11.     Arguments:
  12.         grade: The grade of the account.
  13.       
  14.     Returns:
  15.         The corresponding ExamGenerator.
  16.     """
  17.     if grade == "小学":
  18.         return ExamGenerator1()
  19.     elif grade == "初中":
  20.         return ExamGenerator2()
  21.     elif grade == "高中":
  22.         return ExamGenerator3()
  23.     else:
  24.         return ExamGenerator()
  25. def main():
  26.     """Main function of the program."""
  27.     accounts = Accounts()
  28.     account, grade = accounts.login()
  29.     exam_generator = Exam_generator(grade)
  30.     prob_num = 0
  31.     while True:
  32.         try:
  33.             prob_num = input(
  34.                 f"准备生成{grade}数学题目,请输入生成题目数量(输入-1将退出当前用户重新登录,输入切换为XX可以切换身份): ")
  35.             if prob_num.startswith("切换为"):
  36.                 if prob_num[3:] in ["小学", "初中", "高中"]:
  37.                     grade = prob_num[3:]
  38.                     exam_generator = Exam_generator(grade)
  39.                 else:
  40.                     print("请输入小学、初中和高中三个选项中的一个!")
  41.             elif int(prob_num) >= 10 and int(prob_num) <= 30:
  42.                 exam_generator.save_probs(account, int(prob_num))
  43.                 print(f"{grade}数学题目生成完毕,已保存到exams/{account}目录下!")
  44.             elif int(prob_num) == -1:
  45.                 account, grade = accounts.login()
  46.                 exam_generator = Exam_generator(grade)
  47.             else:
  48.                 print("请输入10-30之间的数字")
  49.         except ValueError:
  50.             print("请输入10-30之间的数字或切换为小学、初中和高中三个选项中的一个!")
  51. if __name__ == '__main__':
  52.     main()
复制代码
3. 异常处理

码中有一些异常处理,这是符合Google代码规范的一项实践。异常处理有助于处理潜在的错误情况。
  1. {
  2.     "小学": [
  3.         {
  4.             "account": "张三1",
  5.             "password": "123"
  6.         },
  7.         {
  8.             "account": "张三2",
  9.             "password": "123"
  10.         },
  11.         {
  12.             "account": "张三3",
  13.             "password": "123"
  14.         }
  15.     ],
  16.     "初中": [
  17.         {
  18.             "account": "李四1",
  19.             "password": "123"
  20.         },
  21.         {
  22.             "account": "李四2",
  23.             "password": "123"
  24.         },
  25.         {
  26.             "account": "李四3",
  27.             "password": "123"
  28.         }
  29.     ],
  30.     "高中": [
  31.         {
  32.             "account": "王五1",
  33.             "password": "123"
  34.         },
  35.         {
  36.             "account": "王五2",
  37.             "password": "123"
  38.         },
  39.         {
  40.             "account": "王五3",
  41.             "password": "123"
  42.         }
  43.     ]
  44. }
复制代码
也有值得改进的地方:
文档字符串(Docstrings)

代码中缺少文档字符串(Docstrings)。文档字符串是对模块、类、函数和方法功能的详细描述,以及参数和返回值的说明。这是Google代码规范强烈鼓励的一项实践,有助于提高代码的可读性和可维护性。
  1. def generate(self, num_range: tuple) -> str:
  2.     """
  3.     Generate a math problem.
  4.     """
  5.     ...
  6. def check_repeat(self, account: str, prob: str) -> bool:
  7.     """Check if the prob is repeated.
  8.   
  9.     Arguments:
  10.         account: The account using the program.
  11.         prob: The prob str to check.
  12.    
  13.     Returns:
  14.         True if the prob is repeated, otherwise False.
  15.     """
  16.     ...
复制代码
五、总结

第一次写博客评价他人的项目,我深切感受到了写代码还得是一个团队活动,人和人之间交流彼此的意见和经验,以求共同进步,这样的学习方式更加高效。搭档的项目写得很好,相比我写的java而言,代码更简练优美,希望大家有所启发。

来源:https://www.cnblogs.com/meaning-of-fragrance/p/17718734.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具