Computer >> Máy Tính >  >> Lập trình >> Python

Chương trình Python để kiểm tra xem tất cả các giá trị trong danh sách có lớn hơn một giá trị nhất định hay không

Danh sách được cung cấp và giá trị kiểm tra được cung cấp, hiển thị tất cả các giá trị trong danh sách lớn hơn giá trị đã cho.

Ví dụ

Input : A=[10, 20, 30, 40, 50]
Given value=20
Output : No
Input : A=[10, 20, 30, 40, 50]
Given value=5
Output : Yes

Thuật toán

Step 1: Create user input list.
Step 2: Input checking value.
Step 3: Traverse in the list using for loop Step
3.1: compare with all the values with checking value.
Step 4: Stop

Mã mẫu

def checknumber(A, val):
   # traverse in the list
   for i in A:
   if val>= i:
   return False
   return True
   # Driver code
   A=list()
   n1=int(input("Enter the size of the List ::"))
   print("Enter the Element of List ::")
   for i in range(int(n1)):
   k=int(input(""))
   A.append(k)
   val = int(input("Enter the checking value"))
if(checknumber(A, val)):
print("All the values are greater than ",val)
else:
print("Values are not greater than ",val)

Đầu ra

Enter the size of the List ::5
Enter the Element of List ::
10
20
30
40
50
Enter the checking value 10
Values are not greater than 10
Enter the size of the List ::6
Enter the Element of List ::
10
20
30
40
50
60
Enter the checking value 9
All the values are greater than 9