You are viewing a single comment's thread. Return to all comments →
my solution
def person_lister(f): def inner(people): # complete the function return map(f, sorted(people, key=lambda x: x[2])) 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 →
my solution