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 마지막 원소 지우기
- .extend(추가할 리스트) 원소 추가
- del a = [?], 삭제
- .remove() = 삭제
'IT 프로그래밍 > Python 파이썬' 카테고리의 다른 글
기초 파이썬 operators (0) | 2020.10.19 |
---|---|
Lambda, map(),filter(),reduce() 람다란? (0) | 2020.10.18 |
Python Trapping Rain Water 풀이 + 해석 (0) | 2020.10.15 |
Machine learning 머신러닝이란 - 1 (+영어) (0) | 2020.10.14 |
Line 기본 총정리 (0) | 2020.10.05 |