안녕세계
[Python] tuple을 dict로 변환 본문
[Python] tuple을 dict로 변환
Junhong Kim 2019. 1. 19. 15:06728x90
반응형
[방법1]
t = ((1, 'a'), (2, 'b'))
ret = dict((y, x) for x, y in t)
print(ret)
# {'a': 1, 'b': 2}
[방법2] *recommend
t = ((1, 'a'), (2, 'b'))
ret = dict(map(reversed, t))
print(ret)
# {'a': 1, 'b': 2}
References
https://stackoverflow.com/questions/3783530/python-tuple-to-dict
728x90
반응형
'Language > Python' 카테고리의 다른 글
[Python] 암호화 라이브러리 (pycryptodome, pycryptodomex) (0) | 2019.01.23 |
---|---|
[Python] HTTP 요청 라이브러리 (requests) (0) | 2019.01.22 |
[Python] iterator 와 generator (0) | 2019.01.17 |
[Python] switch 문 구현 (0) | 2019.01.16 |
[Python] 단순복사 vs 얕은복사 vs 깊은복사 (0) | 2019.01.15 |
Comments