728x90
any
>>> any(iterableValue)
전달받은 자료형의 element 중 하나라도 True일 경우 True를 돌려준다.
(만약 empty 값을 argument로 넘겨주었다면 False를 돌려준다.)
__builtin__ module에 포함된 function 이다.
내부 구현 (from python official docs)
def any(iterable): for element in iterable: if element: return True return False
예)
iterable 자료형내 element가 모두 False일 경우
>>> a = [False,False,False]
>>> any(a) False
iterable 자료형내 element 중 True가 있을 경우
>>> a = [True,False,True] >>> any(a) True
empty를 넘겨주었을 경우
>>> a = [] >>> any(a) False
참고>
>>> help(any)
Help on built-in function any in module __builtin__:
any(...)
any(iterable) -> bool
Return True if bool(x) is True for any x in the iterable.
If the iterable is empty, return False.
728x90
'Language > Python' 카테고리의 다른 글
Python - chr(), 전달받은 정수를 ASCII character로 변환하는 함수 (0) | 2017.12.29 |
---|---|
Python - bool(), 조건에 맞는 boolean 값을 반환하는 클래스 (0) | 2017.12.29 |
Python - len(), 넘겨진 값의 길이나 item의 수를 반환하는 함수 (0) | 2017.12.28 |
Python - bin(), 10진수 숫자를 이진수(binary) 문자열로 바꾸는 함수 (0) | 2017.12.27 |
Python - all(), 반복 가능한 자료형 내 element 전체가 True인지 확인하는 함수 (0) | 2017.12.26 |
Python - abs(), 절대값 구하는 함수 (0) | 2017.12.26 |
[04-5] Python - 파일 존재(isfile), 디렉토리 존재(isdir) 확인 방법 (0) | 2017.01.07 |
[01-1] Python - 코드(Code)의 실행 (0) | 2017.01.06 |