学员管理系统 def add_stu(): """ 添加学员 :return: None """ while True: name = input('* 请输入学员姓名:') age = input('* 请输入学员年龄:') phone = input('* 请输入学员电话:') ... Other 2023-12-13 200 点赞 3 评论 303 浏览