리스트는 Python에서 가장 기본적인 자료구조로,
여러 데이터를 순서대로 저장할 수 있는 구조이다.
arr = [1, 2, 3]
arr = [1, 2, 3] arr.append(4) arr.pop() print(arr)
arr.insert(1, 10) arr.remove(2) arr.sort()
python/dsa/list.py