파이썬의 리스트는 가장 많이 사용하는 built-in mutable 타입 중 하나이다.이번 글에서는 이러한 리스트의 CPython수준에서의 작동을 명확히 알아보자. DeclarationPython의 리스트는 multi-type을 지원한다.당연하게도 모든 원소가 PyObject*이기 때문이다.python list의 구현부를 보자. [링크]// Copyright (c) Python Software Foundation. Licensed under the PSF License v2.typedef struct { PyObject_VAR_HEAD /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */ PyObject **ob_..