파이썬은 리스트에서 쓸 수 있는 내장 메서드들이 있다. 이 메서드를 알고 있으면 코드를 쓸 때, 간결하고 효율적으로 쓸 수 있으므로 이런 것들이 있다는 것을 알고 필요할 때 찾아 쓰면 되겠다! 파이썬 리스트 내장메서드 메서드 Method 설명 Description 방법 append() Adds an element at the end of the list 리스트에 요소 한개를 추가하기 list.append(x) index() Returns the index of the first element with the specified value 리스트에서 해당 요소의 첫 인덱스를 반환하기 list.index(x) clear() Removes all the elements from the list 리스트 안의 모든..