Python
 Computer >> コンピューター >  >> プログラミング >> Python

リスト内のすべての値が指定された値より大きいかどうかを確認するPythonプログラム


リストが指定され、チェック値が指定されたら、指定された値より大きいすべての値をリストに表示します。

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

アルゴリズム

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

サンプルコード

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)
>

出力

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

  1. ツリー内のすべての値がPythonで同じかどうかをチェックするプログラム

    二分木があるとすると、ツリー内のすべてのノードが同じ値であるかどうかを確認する必要があります。 したがって、入力が次のような場合 その場合、出力はTrueになります これを解決するには、次の手順に従います- 関数solve()を定義します。これはルートになり、val ルートがnullの場合、 Trueを返す valが定義されていない場合、 val:=ルートの値 ルートの値がvalと同じで、solve(ルートの左側、val)およびsolve(ルートの右側、val)もtrueの場合、trueを返します 理解を深めるために、次の実装を見

  2. リスト内のすべての数値を乗算するPythonプログラム?

    まず、ユーザー入力用の3つのリストを作成します。ここでは、トラバース手法を使用します。 productの値を1に初期化して、すべての要素をトラバースし、リストの最後まですべての数値にproductを1つずつ掛けます。 例 Input: A=[5,6,3] Output:90 Explanation:5*6*3 アルゴリズム Step 1: input all numbers in the list (lst). Step 2: to multiply all values in the list we use traversing technique. Step 3: varia