공식 문서: https://docs.python.org/3/library/collections.html
collections 내 자료구조
namedtuple, deque, Counter, OrderedDict, defaultdict 등에 대한 내용
4. namedtuple
namedtuple은 말그대로 이름을 가지는 tuple이다. tuple객체 자체와 tuple이 가지는 원소값 마다 이름을 가진다.
_replace() 활용 dictionary를 namedtuple로 바꾸기
결과값
# dict_to_tuple의 결과값
People(name="lee", age=27, sex="M")
5. OrderedDict
OrderedDict는 순서를 가지는 dictionary이다.
결과값