반복 가능한 자료형 내 요소 중 하나라도 True인지 확인한다

any(iterableValue)

전달받은 자료형의 요소 중 하나라도 True라면 True를 return

python official docs의 내부 구현

def any(iterable): 
	for element in iterable: 
		if element: return True 
	return False

⚠️ 요소가 없는 empty한 것을 인자로 넘겨주어도 False를 return