# Python CodeRecipe|min()の使い方

HomeFunctions

# min()の例1

Return the lowest number:

    x = min(5, 10)

# min()の定義及び使い方

min()関数は項目を返します。 を選択します。 値が文字列の場合は、アルファベット順の比較が行われます。

# min()の構文

    min(n1, n2, n3, ...)
  

 Or:


    min(iterable)

# min()の引数

n1,n2,n3,...。 比較する1つ以上の項目

または:

パラメータの説明|

反復可能な 比較する1つ以上のアイテムを持つ反復可能な

# min()の例2

Return the name with the lowest value, ordered alphabetically:

    x = min("Mike", "John", "Vicky")

# min()の例3

Return the item in a tuple with the lowest value:

    a = (1, 5, 3, 9)x = min(a)

Related Pages The max() function, to return the highest value.

HomeFunctions