元组排序~

n=2
m=3
a = [tuple(input().strip().split()) for j in range(m)]
print(a)
s = sorted(a,key=lambda x:x[1])
print(s)

你可能感兴趣的:(python,python,开发语言)