示例#1
0
def read_from_csv():
    People.output_People(People.read_from_csv())
示例#2
0
def read_from_txt():
    People.output_People(People.read_from_txt())
示例#3
0
def order_by_age():
    People.output_People(sorted(docs, key=People.get_age))
示例#4
0
def order_by_age_desc():
    People.output_People(sorted(docs, key=People.get_age, reverse=True))
示例#5
0
def order_by_score():
    People.output_People(sorted(docs, key=People.get_score))
示例#6
0
def show_people_info():
    People.output_People(docs)