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

Python – 튜플을 사전 키에 연결

<시간/>

튜플을 사전 키에 연결해야 하는 경우 목록 이해와 '결합' 속성이 사용됩니다.

예시

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

my_list = [(("pyt", "is", "best"), 10), (("pyt", "cool"), 1), (("pyt", "is", "fun"), 15)]

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

my_result = {}
for sub_list in my_list:

   my_result[" ".join(sub_list[0])] = sub_list[1]

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

출력

The list is :
[(('pyt', 'is', 'best'), 10), (('pyt', 'cool'), 1), (('pyt', 'is', 'fun'), 15)]
The result is :
{'pyt is best': 10, 'pyt cool': 1, 'pyt is fun': 15}

설명

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

  • 빈 사전이 생성됩니다.

  • 목록은 반복되고 목록 이해는 공백을 제거하는 데 사용됩니다.

  • 콘솔에 표시되는 출력입니다.