튜플이 주어졌을 때 우리의 임무는 튜플의 모든 키를 기준으로 증가하는 순서로 튜플 목록을 정렬하는 것입니다. 우리는 주어진 키에 따라 그것들을 정렬할 필요가 있습니다. 여기에서 이것을 하기 위해 우리는 key=last를 사용하여 그것들을 정렬하고 주어진 튜플을 정렬해야 하는 키 인덱스로 last를 저장하는 sorted() 함수를 사용합니다.
예
Input: A = [(2, 55), (1, 20), (4, 40), (2, 30)] k = 0 Output: [(1, 20), (2, 30), (2, 55), (4, 40)]
설명
0번째 인덱스 키를 사용하여 정렬된 순서를 증가시킵니다.
알고리즘
Step 1: get the last key value. Step 2: next we use inbuilt function sorted () method where we sort them using key=last and store last as the key index according to which we have to sort the given tuples. Step 3: display sorted list.
예시 코드
# Python program to sort a list of tuples # in increasing order by any key # get the last key. def data(n): return n[k] # function to sort the tuple def tuplesort(tup): # We pass used defined function last # As a parameter. 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)]