독학하는 학생의 정리노트

독학하며 정리노트를 올리는 학생 공부 블로그입니다.

IT 프로그래밍/Python 파이썬

파이썬 리스트 python list

공부 안 하는 학생 2020. 10. 19. 05:12

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를 붙이고{변수명}형태로 작성한다. 대문자도 가능하다.

The first element is 1 and the last element is 9

  • .append = add element into the list 원소 추가
  • .insert = add element into the list 원소 추가
  • pop() = remove the last element and return the element 마지막 원소 지우기
  • .extend(추가할 리스트) 원소 추가
  • del a = [?], 삭제
  • .remove() = 삭제