dict
쌍 추가 방법# dict 생성
temp = {'a': 'aaaa'}
# 쌍 추가
temp['b'] = 'bbbb'
dict
로 매핑# 응용
before = ['a','b','c','d']
after = ['aa','bb','cc','dd']
# 사전 만들기
temp_dict = {}
for i,j in zip(before,after):
temp_dict[i] = j
# 매핑할 list
mapping_list = ['b','c','b','b','a']
# list comprehension 사용
mapping_list_ = [temp_dict[k] for k in before]
mapping_list_
END