Pythonでのmin()とmax()の使用
この記事では、Python標準ライブラリに含まれる最小関数と最大関数について学習します。使用法に応じて無限のパラメータを受け入れます
構文
max( arg1,arg2,arg3,...........)
戻り値 −すべての引数の最大値
エラーと例外:ここでエラーが発生するのは、引数が同じタイプでないシナリオでのみです。それらの比較中にエラーが発生しました。
最初にmax()関数を実装できるすべての方法を見てみましょう。
例
# Getting maximum element from a set of arguments passed print("Maximum value among the arguments passed is:"+str(max(2,3,4,5,7,2,1,6))) # the above statement also executes for characters as arguments print("Maximum value among the arguments passed is:"+str(max('m','z','a','b','e'))) # it can also a accept arguments mapped in the form of a list l=[22,45,1,7,3,2,9] print("Maximum element of the list is:"+str(max(l))) # it can also a accept arguments mapped in the form of a tuple l=(22,45,1,7,71,91,3,2,9) print("Maximum element of the tuple is:"+str(max(l)))
出力
Maximum value among the arguments passed is:7 Maximum value among the arguments passed is:z Maximum element of the list is:45 Maximum element of the tuple is:91
ここで、max関数を使用することにより、比較操作なしで引数の最大値を直接取得できることがはっきりとわかります。
同様に、ここでmin()関数を実装できます
例
# Getting maximum element from a set of arguments passed print("Minimum value among the arguments passed is:"+str(min(2,3,4,5,7,2,1,6))) # the above statement also executes for characters as arguments print("Minimum value among the arguments passed is:"+str(min('m','z','a','b','e'))) # it can also a accept arguments mapped in the form of a list l=[22,45,1,7,3,2,9] print("Minimum element of the list is:"+str(min(l))) # it can also a accept arguments mapped in the form of a tuple l=(22,45,1,7,71,91,3,2,9) print("Minimum element of the tuple is:"+str(min(l)))
出力
Minimum value among the arguments passed is:1 Minimum value among the arguments passed is:a Minimum element of the list is:1 Minimum element of the tuple is:1
max()やmin()などの組み込み関数を使用することで、比較を行うためのロジックを実際に実装しなくても、対応する最大値と最小値を直接取得できます。
結論
この記事では、標準のPythonライブラリに含まれているmax関数とmin関数の実装について学びました。
-
HTMLで最小属性と最大属性を使用するにはどうすればよいですか?
HTMLのmin属性とmax属性は、要素の最小値と最大値を設定するために使用されます。 minおよびmax属性は、次の要素で使用できます。 S。番号 要素 属性 属性 1 最大 min 2 最大 min 3 最大 min 例 次のコードを実行して、HTMLでmin属性とmax属性を使用する方法を学ぶことができます。 <!DOCTYPE html> <html> <head>  
-
ExcelのMIN、Max、およびAVERAGE関数の使用方法
機能 Excelのセルの範囲で数学計算を実行します。最も一般的な機能 SUM 、平均 、カウント 、 MIN 、および MAX 。個人がデータの平均、最小、または最大を見つけたい場合は、平均を使用できます。 、 MIN 、およびMAX関数 。この投稿では、Excelで平均、最小、最大を計算する方法を紹介します。 ExcelのAVERAGE、MIN、およびMAX関数 平均 :特定のセルの数値を検索し、1つ以上の値の平均値を返します。数字を含む名前、配列、参照にすることができます。 MIN :セルの範囲で最小値を検索します。 最大 :セルの範囲で最大値を検索します。