이 자습서에서는 목록의 모든 요소가 숫자보다 큰지 여부를 확인합니다. 예를 들어, [1, 2, 3, 4, 5] 목록이 있습니다. 및 숫자 0. 목록의 모든 값이 주어진 값보다 크면 True 를 반환합니다. else 거짓 .
간단한 프로그램입니다. 3분 이내로 작성해 드립니다. 먼저 직접 시도하십시오. 해결책을 찾을 수 없다면 아래 단계에 따라 프로그램을 작성하십시오.
- 목록 및 숫자 초기화
- 목록을 순환합니다.
If yes, return **False**
- 참을 반환합니다.
예시
## initializing the list values = [1, 2, 3, 4, 5] ## number num = 0 num_one = 1 ## function to check whether all the values of the list are greater than num or not def check(values, num): ## loop for value in values: ## if value less than num returns False if value <= num: return False ## if the following statement executes i.e., list contains values which are greater than given num return True print(check(values, num)) print(check(values, num_one))
위의 프로그램을 실행하면
출력
True False
그것을 찾는 또 다른 방법은 all()을 사용하는 것입니다. 내장 방법. 모두() 메소드는 iterable 의 모든 요소가 True를 반환합니다. 참입니다. 그렇지 않으면 False를 반환합니다. . all() 을 사용하는 프로그램을 봅시다. 방법.
## initializing the list values = [1, 2, 3, 4, 5] ## number num = 0 num_one = 1 ## function to check whether all the values of the list are greater than num or not def check(values, num): ## all() method if all(value > num for value in values): return True else: return False print(check(values, num)) print(check(values, num_one))
위의 프로그램을 실행하면
출력
True False
프로그램에 대해 궁금한 점이 있으면 댓글 섹션에 언급해 주세요.