파괴적 함수와 비파괴적 함수
- 파괴적 함수 : 원본을 변화시키는 함수
- 비파괴적 함수 : 원본을 변화시키지 않는 함수
파괴적 함수
- list.append()
- list.extend()
- list.insert()
- list.pop()
- del list[], dictionary[key]
- list.remove()
- list.clear()
- list.reverse()
비파괴적 함수
- string.upper()
- string.lower()
- trim 기능 함수
string.strip(), string.lstrip(), string.rstrip() - sorted(list)
- reversed(list)
- 슬라이싱
'개발 > Python' 카테고리의 다른 글
[Python] Dictionary 사전 딕셔너리 (0) | 2023.01.03 |
---|---|
[Python] 이스케이프 문자 Escape Character (0) | 2023.01.03 |
[Pandas, Numpy] NaN, nan 을 대처하는 법 (0) | 2022.09.08 |
부스트캠프 AI Tech 3기 Pre-Course [4]-3 Logging Handling / 로그, 로깅 (0) | 2021.12.08 |
부스트캠프 AI Tech 3기 Pre-Course [4]-2 File Handling / 파일 (0) | 2021.12.07 |