파이썬 아무()
11477 단어 pythoncodenewbieprogrammingtutorial
Python의
any()
함수는 iterable( List , set , dictionary , tuple )의 요소가 True인 경우 True
를 반환합니다. 그렇지 않은 경우 False
를 반환합니다.any() 구문
any()
메서드의 구문은 다음과 같습니다.any(iterable)
모든() 매개변수
any()
함수는 iterable을 list , set , tuple , dictionary 등의 유형일 수 있는 인수로 사용합니다.any() 반환 값
any()
메서드는 부울 값을 반환합니다.True
iterable의 요소 중 하나가 참인 경우False
iterable의 모든 요소가 false이거나 iterable이 비어 있는 경우상태
반환 값
모든 요소가 참
진실
모든 요소는 false입니다.
거짓
한 요소는 참이고 다른 요소는 거짓입니다)
진실
한 요소는 거짓이고 다른 요소는 참입니다.
진실
빈 반복 가능
거짓
예제 1 – Python 목록에서 any() 함수 사용
# All the elements in the list are true
list = [1,3,5,7]
print(any(list))
# All the elements in the list are false
list = [0,0,False]
print(any(list))
# Some of the elements are false
list = [1,5,7,False]
print(any(list))
# Only 1 element is true
list = [0, False, 5]
print(any(list))
# False since its Empty iterable
list = []
print(any(list))
산출
True
False
True
True
False
예제 2 – Python 문자열에서 any() 함수 사용
# Non Empty string returns True
string = "Hello World"
print(any(string))
# 0 is False but the string character of 0 is True
string = '000'
print(any(string))
# False since empty string and not iterable
string = ''
print(any(string))
산출
True
True
False
예제 3 – Python 사전에서 any() 함수 사용
사전의 경우 사전의 모든 키(값 아님)가 false이거나 사전이 비어 있는 경우에만
any()
메서드가 False를 반환합니다. 하나 이상의 키가 true이면 any()
는 True를 반환합니다.# All elements in dictionary are true
dict = {1: 'Hello', 2: 'World'}
print(any(dict))
# All elements in dictionary are false
dict = {0: 'Hello', False: 'World'}
print(any(dict))
# Some elements in dictionary are true and rest are false
dict = {0: 'Hello', 1: 'World', False: 'Welcome'}
print(any(dict))
# Empty Dictionary returns false
dict = {}
print(any(dict))
산출
True
False
True
False
예제 4 – Python 튜플에서 any() 함수 사용
# All elements of tuple are true
t = (1, 2, 3, 4)
print(any(t))
# All elements of tuple are false
t = (0, False, False)
print(any(t))
# Some elements of tuple are true while others are false
t = (5, 0, 3, 1, False)
print(any(t))
# Empty tuple returns false
t = ()
print(any(t))
산출
True
False
True
False
예제 5 – Python 집합에서 any() 함수 사용
# All elements of set are true
s = {1, 2, 3, 4}
print(any(s))
# All elements of set are false
s = {0, 0, False}
print(any(s))
# Some elements of set are true while others are false
s = {1, 2, 3, 0, False}
print(any(s))
# Empty set returns false
s = {}
print(any(s))
산출
True
False
True
False
게시물 Python any()이 ItsMyCode에 처음 나타났습니다.
Reference
이 문제에 관하여(파이썬 아무()), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/fluentprogramming/python-any-1ipf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)