标签: python
我有一个列表,里面有很多不同大小的元组。每个元组包含一定数量的对象。我想对列表进行排序,因此具有1个对象的元组都位于具有2个对象的元组等之前。我知道元组具有内置长度,但是我不知道如何将其与python中的sort方法一起使用。谢谢!
答案 0 :(得分:1)
使用此:
var remainder; remainder = 11 % 3; //=> 2
或者:
print(sorted(list_of_tuples,key=len))
两者都能再现预期的结果。