Python 学生信息库的优化
学生信息库的优化
# coding:utf-8
"""
学生信息库
"""
class StudentInfo(object):
def __init__(self, students):
self.students = students
def get_by_id(self, student_id):
return self.students.get(student_id)
def get_all_students(se...
hn.icodeq.com2 min read