티스토리 뷰

리스트, set 과 더불어 딕셔너리에도 컴프리 헨션이 존재한다.


다른 표현식과 문법은 유사하다.


다만 key, values 이렇게 두개가 위치하게 된다.



country_capital = {'대한민국': '서울', '영국': '런던', '미국': '워싱턴'}
dc = {item[0]: item[1] for item in country_capital.items()}
print(dc)


댓글