Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- git
- django
- SCALA APP
- amazon q
- Transit Gateway
- django-debug-toolbar
- pyspark
- VPC
- tgw
- Python
- MongoDB
- coding with ai
- json
- devops
- Amazon
- Spark
- ubuntu
- mcponaws
- Eclipse
- ai assistant
- nosql
- 툴바안뜸
- AWS
- debug_toolbar
- debug toolbar
- list
- AWSKRUG
- AI
Archives
- Today
- Total
STACKBASE
[Python] map, filter 함수 본문
반응형
#1. map 함수
# - 사용이유
# - 기존 리스트를 수정해서 새로운 리스트를 만들때 사용
# - 사용방법
# map(함수, 순서가 있는 자료형)
print(list(map(int, ['1', '2', '3'])))
items = [' logitecmouse', 'epsol keyboard ']
# def strip_all(x):
# return x.strip()
# items = list(map(strip_all, items))
items = list(map(lambda x: x.strip(), items))
print(items)
#filter 함수
# - 사용이유
# - 기존 리스트에 조건을 만족하는 요소만 추출
# - 사용방법
# filter(함수, 순서가 있는 자료형)
def func(x):
return x<0
print(list(filter(func, [-5, -3, 0, 1, 2, 3])))
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[Python] 모듈과 __name__ == '__main__' 의미 (0) | 2022.02.23 |
---|---|
[Python] 함수 어노테이션(annotation) (0) | 2022.02.23 |
[Python] lambda function (0) | 2021.11.28 |
[Python] 위치/키워드 가변 매개변수 (0) | 2021.11.28 |
[Python] 리스트 할당과 복사 (0) | 2021.11.24 |