通过Python中的特定顺序对元组列表进行排序

当需要按特定顺序对元组列表进行排序时,可以使用“ sorted”方法。

“排序”方法用于对列表中的元素进行排序。

列表可用于存储异构值(即,任何数据类型的数据,例如整数,浮点数,字符串等)。元组列表基本上包含包含在列表中的元组。

以下是相同的演示-

示例

def tuple_sort(my_tup):
   return(sorted(my_tup, key = lambda x: x[1]))

my_tuple = [('Mahe', 11), ('Aisha', 33), ('Will', 50), ('Root', 65)]

print("The list of tuple is : ")
print(my_tuple)
print("The tuple after placing in a specific order is : ")
print(tuple_sort(my_tuple))
输出结果
The list of tuple is :
[('Mahe', 11), ('Aisha', 33), ('Will', 50), ('Root', 65)]
The tuple after placing in a specific order is :
[('Mahe', 11), ('Aisha', 33), ('Will', 50), ('Root', 65)]

解释

  • 定义了一个名为“ tuple_sort”的方法,该方法将元组列表作为参数。

  • 它使用“ sorted”方法根据元组列表中每个元组中的第一个元素,按顺序对元组列表进行排序。

  • 元组列表已定义,并显示在控制台上。

  • 通过将此元组列表作为参数传递来调用该函数。

  • 该操作的数据存储在变量中。

  • 此变量是控制台上显示的输出。