본문 바로가기
Computer Science/[20-3,4] Python Basic

[Python] 딕셔너리 키와 값을 서로 바꾸기 - 값이 군집자료형

by gojw 2020. 3. 8.

key가 스트링일 때 딕셔너리 키와 값 바꾸는 방법:

https://jiwonkoh.tistory.com/12

 

[Python] 딕셔너리 키와 값을 서로 바꾸기

>>> new_dict = {} >>> for keys, values in content.items(): new_dict[values] = keys

jiwonkoh.tistory.com

 

# content = {'0': {'O'}, '1': {'I'}, '2': {'Z', 'R'}}
new_dict = {}

for key, value in content.items():
    for i in value:
        new_dict[i] = key
        
# new_dict = {'O': '0', 'I': '1', 'Z': '2', 'R': '2'}

 

단순하게 값 하나하나에 대해서 for문을 돌린다.

 

댓글