list have specific ways to index it. In a list, elements inside can be add, remove, change, move, or copy through specific commands. index는 리스트 안에 있는 원소들을 지칭한다. index는 0부터 시작한다 index에 끝은 -1라고 표기한다 f-strings는 앞에 f를 붙이고{변수명}형태로 작성한다. 대문자도 가능하다. .append = add element into the list 원소 추가 .insert = add element into the list 원소 추가 pop() = remove the last element and return the element 마지막 원소 지우기 .exte..