Discuss / Python / 习题

习题

Topic source
题1:
def by_name(t):
    return t[0].lower()
题2:
def by_score(t):
    return -t[1]

  • 1

Reply