일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- SQL
- Redshift
- Google Excel
- Python
- matplotlib
- PySpark
- PostgreSQL
- Tkinter
- math
- Java
- Apache
- Kotlin
- Google Spreadsheet
- 파이썬
- string
- GIT
- Excel
- django
- PANDAS
- gas
- Mac
- array
- list
- Github
- numpy
- dataframe
- hive
- c#
- google apps script
- Today
- Total
목록POP (2)
달나라 노트
list의 pop method는 특정 index에 위치한 요소를 제거하고 제거된 요소를 return해줍니다. 그리고 원본 list에도 명시된 index 위치에 있는 요소가 제거된 채로 변형됩니다. Syntax list.pop(index) pop method는 제거할 요소의 index를 parameter로 받습니다. list_test = [1, 2, 3, 4, 5] removed_element = list_test.pop(1) print(removed_element) print(list_test) -- Result 2 [1, 3, 4, 5] list_test.pop(1) -> 이것의 의미는 list_test에서 index = 1 위치에 있는 요소를 제거한 후 제거된 그 요소를 return합니다. 그래서 결..
Python list의 요소를 삭제할 수 있는 기능을 제공하는 method는 크게 4가지가 있습니다. 각 method의 특징은 다음과 같습니다. Method Description clear() list속 모든 요소를 삭제하여 비어있는 list로 변환시킴 (원본 list에서 삭제됨) remove(value) list속에서 value와 동일한 값을 삭제 (원본 list에서 삭제됨) pop(index) list속에서 명시된 index의 요소를 삭제 (원본 list에서 삭제됨) del list[index] list속에서 명시된 index의 요소를 삭제 (원본 list에서 삭제됨) 예시를 보면서 한번 알아봅시다. list_test = [5, 3, 1, 4, 2, 'a', 'bc', 'def'] list_test...