https://velog.io/@ddusi/python-1

namedtuple()

https://excelsior-cjh.tistory.com/97

내용 많음. 참고할 것.

OrderedDict()

defaultdict()

from collections import defaultdict

int_dict = defaultdict(int)

Counter()

deque()