给定一个元组,我们的任务是通过元组中的任何键以升序对元组列表进行排序。我们需要根据给定的键对它们进行排序。为此,我们使用sorted()函数,在其中我们使用key = last对它们进行排序,并将last存储为键索引,根据该索引我们必须对给定的元组进行排序。
Input: A = [(2, 55), (1, 20), (4, 40), (2, 30)] k = 0 Output: [(1, 20), (2, 30), (2, 55), (4, 40)]
使用第0个索引键增加排序顺序。
Step 1: JavaScript中用2个值和键数组构建映射 Step 2: 接下来,我们使用内置函数sorted()方法,在其中我们使用key = last对它们进行排序,并将last作为键索引存储,根据该索引我们必须对给定的元组进行排序。 Step 3: 显示排序列表。
#Python程序对元组列表进行排序 #按任意键升序排列 # get the last key. def data(n): return n[k] #函数对元组进行排序。 def tuplesort(tup): #我们最后传递使用的定义函数 #作为参数。 return sorted(tup, key = data) # Driver code a = [(230, 456, 120), (205, 414, 39), (89, 410, 213)] k = int(input("Enter the Index ::>")) print("Sorted:"), print(tuplesort(a))
输出结果
Enter the Index ::>2 Sorted: [(205, 414, 39), (230, 456, 120), (89, 410, 213)]