리스트 관련 함수 이번 시간에는 리스트의 값을 변경할 수 있는 함수에 대해 알아보겠다. list.append(x) Add an item to the end of the list. Equivalent to a[len(a):] = [x]. 리스트의 끝에 값을 첨가하는 것. list.extend(iterable) Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable. 리스트의 끝에 리스트를 첨가하는 것 list.insert(i, x) Insert an item at a given position. The first argument is the index of the element befor..