【Python入門】リスト(配列)の最大値を取得する方法とは?リスト(配列)内で一番大きな値を持つ要素の取得方法を徹底解説

Python

Pythonのリスト(配列)とは、複数の要素を格納できるデータ型の1つで、要素の順序を保持します。リストは角かっこ [] で囲まれ、カンマ , で区切られた複数の要素を含むことができます。リストの要素には、異なるデータ型のオブジェクトを含むことができます。また、リストは可変(mutable)オブジェクトであり、要素を追加、削除、更新することができます。本記事では、Pythonによるリスト(配列)の最大値を取得する方法を紹介します。

下記の様な内容で悩んでいる/困っている場合に使える方法を参考までにご共有させて頂きます。

・Pythonの場合、どうやって配列の最大値を取得するの?
・Pythonのリスト(配列)は、どの様にリスト(配列)内で一番大きな値を持つ要素を取得するのだろうか?

リスト(配列)内で一番大きな値を持つ要素の取得(自作関数)

関数の定義

def getMaxValueOfList(input_list: list):
    return max(input_list)

使用例1

SampleList = [999,1,50]
MaxValue = getMaxValueOfList(SampleList)
print(f"Max Value:\n{MaxValue} {type(MaxValue)}")
Max Value:
999 <class 'int'>

使用例2

SampleList = [0, 50, 100, 0, 50, 100]
MaxValue = getMaxValueOfList(SampleList)
print(f"Max Value:\n{MaxValue} {type(MaxValue)}")
Max Value:
100 <class 'int'>

使用例3

SampleList = ['a','b','c','d','e']
MaxValue = getMaxValueOfList(SampleList)
print(f"Max Value:\n{MaxValue} {type(MaxValue)}")
Max Value:
e <class 'str'>

使用例4

SampleList = ['b','c','a','ccc','bbb']
MaxValue = getMaxValueOfList(SampleList)
print(f"Max Value:\n{MaxValue} {type(MaxValue)}")
Max Value:
ccc <class 'str'>

まとめ

Pythonのリスト(配列)はPython標準で使えるデータ型であり、Pythonでプログラムする上でよく使うものとなっております。この記事では、Pythonによるリスト(配列)の最大値を取得する方法を紹介しました。ぜひ活用してみてください。

関連検索ワード

How to get a max value of list?

関連キーワード

python, 入門, 初心者, リスト, 配列, 要素, 取得, 最大値, list, element, get, max, value

This website stores cookies on your computer. These cookies are used to provide a more personalized experience and to track your whereabouts around our website in compliance with the European General Data Protection Regulation. If you decide to to opt-out of any future tracking, a cookie will be setup in your browser to remember this choice for one year.

Accept or Deny