标签: python sorting
可能重复: Sorting a tuple that contains tuples
喜 我有一个列表A = [[a,'3'],[g,'1'],[y,2]] 我正在寻找一种根据数字(第二维)安排它的快速方法,所以 纽瓦= [[克, '1'],[Y, '2'],[A, '3']] 感谢 爱丽儿
答案 0 :(得分:2)
from operator import itemgetter newA = sorted(a, key=itemgetter(1))