You are viewing a single comment's thread. Return to all comments →
import operator def person_lister(f): def inner(people): sorted_people = sorted(people, key=lambda x: int(x[2])) format_people = [f(person) for person in sorted_people] return format_people return inner``
Seems like cookies are disabled on this browser, please enable them to open this website
Decorators 2 - Name Directory
You are viewing a single comment's thread. Return to all comments →