728x90
반응형
람다함수
- 1회용의 간단한 함수를 만드는것
필터 함수(filterfunction)
def adult_func(n):
if n>=19:
return True
else:
return False
ages = [34,39,20,18,13,54,23,23]
print('성년 목록')
for a in filter(adult_func,ages):
print(a, end=' ')
list(filter(adult_func,ages))
set(filter(adult_func,ages))
list(set(filter(adult_func,ages)))
728x90
반응형
'Language > Python' 카테고리의 다른 글
[Python/파이썬] matplotlib 활용 / random 문제 (0) | 2021.06.09 |
---|---|
[Python/파이썬] Decorator (0) | 2021.06.04 |
[Python/파이썬] 클래스와 특수 메소드 (0) | 2021.06.02 |
[Python/파이썬] 객체의 동일성(identity) (0) | 2021.06.02 |
[Python/파이썬] 클래스(class), 객체(object), 생성자, 메서드 만들기 (0) | 2021.06.02 |