iterable(리스트, 튜플, 세트 등)의모든 요소가 True?? → True 반환 False가 하나라도 있으면 → False 반환 print(all([True, True, True])) # ✅ Trueprint(all([True, False, True])) # ❌ Falseprint(all([1, 2, 3])) # ✅ True (0이 아니면 True)print(all([1, 0, 3])) # ❌ False (0은 False)print(all([])) # ✅ True (비어 있으면 기본적으로 True) ※ 리스트에 " 숫자 0 "이 있는지 확인할 때 유용!!※ 이와 유사한 함수로 an..