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

Python - 목록의 K번째 키 값으로 사전 필터링

<시간/>

목록에서 'K'번째 키의 값으로 사전을 필터링해야 하는 경우 조건을 지정하여 간단한 반복을 사용합니다.

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

my_list = [{"Python": 2, "is": 4, "cool": 11},
   {"Python": 5, "is": 1, "cool": 1},
   {"Python": 7, "is": 3, "cool": 7},
   {"Python": 9, "is": 9, "cool": 8},
   {"Python": 4, "is": 10, "cool": 6}]

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

search_list = [1, 9, 8, 4, 5]

key = "is"

my_result = []

for sub in my_list:
   if sub[key] in search_list:
      my_result.append(sub)

print("The result is :")
print(my_result)

출력

The list is :
[{'Python': 2, 'is': 4, 'cool': 11}, {'Python': 5, 'is': 1, 'cool': 1}, {'Python': 7, 'is': 3, 'cool': 7}, {'Python': 9, 'is': 9, 'cool': 8}, {'Python': 4, 'is': 10, 'cool': 6}]
The result is :
[{'Python': 2, 'is': 4, 'cool': 11}, {'Python': 5, 'is': 1, 'cool': 1}, {'Python': 9, 'is': 9, 'cool': 8}]

설명

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

  • 다른 정수 목록과 키가 정의되어 있습니다.

  • 빈 목록이 정의되었습니다.

  • 목록이 반복되고 키가 발견되면 요소가 이모티콘 목록에 추가됩니다.

  • 출력입니다.

  • 콘솔에 표시됩니다.