Discuss / Python / 作业

作业

Topic source

#按名字排序 def by_name(t): return t[0] #按分数排序从高到低排序 def by_score(t): return -t[1]


  • 1

Reply