딕셔너리는 고정되는 key와 mutable한 value로 매핑되어있는 순성벗는 집합.
예제
# 리스트 to 딕셔너리
votes=['도하영', '도경완', '장윤정', '도연우', '장윤정']
vote_counter = {} #딕셔너리
for name in votes:
# votes에 값이 votes_counter에 키로 없을 시
if(name not in vote_counter.keys()):
vote_counter[name] = votes.count(name)
print(vote_counter)
{'도하영': 1, '도경완': 1, '장윤정': 2, '도연우': 1}