Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python – 키의 i번째 인덱스 값으로 사전 목록 정렬

<시간/>

키의 'i' 인덱스 값을 기준으로 사전 목록을 정렬해야 하는 경우 'sorted' 방식과 람다 방식을 사용합니다.

예시

아래는 동일한 데모입니다 -

my_list = [{"Python" : "Best", "to" : "Code"},
   {"Python" : "Good", "to" : "Learn"},
   {"Python" : "object", "to" : "cool"},
   {"Python" : "oriented", "to" : "language"}]

print("The list is : " )
print(my_list)

K = "Python"
print("The value of K is ")
print(K)

i = 2
print("The value of i is :")
print(i)

my_result = sorted(my_list, key = lambda sub: sub[K][i])

print("The resultant list is : ")
print(my_result)
입니다.

출력

The list is :
[{'Python': 'Best', 'to': 'Code'}, {'Python': 'Good', 'to': 'Learn'}, {'Python': 'object', 'to': 'cool'},
{'Python': 'oriented', 'to': 'language'}]
The value of K is
Python
The value of i is :
2
The resultant list is :
[{'Python': 'oriented', 'to': 'language'}, {'Python': 'object', 'to': 'cool'}, {'Python': 'Good', 'to':
'Learn'}, {'Python': 'Best', 'to': 'Code'}]

설명

  • 사전 목록이 생성되어 콘솔에 표시됩니다.

  • 'K' 값이 ​​정의되어 콘솔에 표시됩니다.

  • 'i'의 값이 정의되어 콘솔에 표시됩니다.

  • 'sorted' 방법은 람다 함수를 키로 사용하여 목록을 정렬하는 데 사용됩니다.

  • 이것은 변수에 할당됩니다.

  • 이 변수는 콘솔에 출력으로 표시됩니다.