Python list의 2가지 메서드(Method)에 대한 포스팅입니다. List의 끝에 객체를 붙여 넣는 Append 메서드는 Python 사용자 대부분이 알 것 같습니다. Extend 메서드는 모르는 분들이 제법 있는 것 같은데, 리스트에 다른 리스트를 리스트가 아닌 원소 개별로 붙여야 할 때 유용합니다. 두줄 요약 - Append : List의 끝에 객체를 붙임 (Append object to the end of the list) - Extend: List의 끝에 Iterable 객체(List, Tuple, dict 등)의 원소(Elements)를 붙임 (Extend list by appending elements from the iterable) - Append 결과 >> ['Apple', 'Ba..