List to dictionary

Jmnote (토론 | 기여)님의 2014년 8월 22일 (금) 10:13 판 (새 문서: ;list to dictionary ==Python== category: Python <source lang='Python'> lst = [('a', 2), ('b', 4), (1, 8)] dct = dict(lst) print( dct ) # {'b': 4, 1: 8, 'a': 2} </source> ==같...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
list to dictionary

1 Python

lst = [('a', 2), ('b', 4), (1, 8)]
dct = dict(lst)
print( dct )
# {'b': 4, 1: 8, 'a': 2}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}