Pythonのリスト(配列)とは、複数の要素を格納できるデータ型の1つで、要素の順序を保持します。リストは角かっこ [] で囲まれ、カンマ , で区切られた複数の要素を含むことができます。リストの要素には、異なるデータ型のオブジェクトを含むことができます。また、リストは可変(mutable)オブジェクトであり、要素を追加、削除、更新することができます。本記事では、Pythonによるリスト(配列)内で最大値を持つ要素番号を取得する方法を紹介します。
下記の様な内容で悩んでいる/困っている場合に使える方法を参考までにご共有させて頂きます。
・Pythonの場合、どうやって配列内で最大値を持つ要素番号を取得するの?
・Pythonのリスト(配列)は、どの様にリスト(配列)内で一番大きな値を持つ要素番号を取得するのだろうか?
リスト(配列)内で一番大きな値を持つ要素番号の取得(自作関数)
関数の定義
def getListIndexOfMaxValue(input_list: list) -> list:
if not input_list: return []
max_value = max(input_list)
return [id for id, value in enumerate(input_list) if value==max_value]
使用例1
SampleList = [999,1,50]
ListIndexOfMaxValue = getListIndexOfMaxValue(SampleList)
print(f"List Index Of Max Value:\n{ListIndexOfMaxValue} {type(ListIndexOfMaxValue)}")
List Index Of Max Value:
[0] <class 'list'>
使用例2
SampleList = [0, 50, 100, 0, 50, 100]
ListIndexOfMaxValue = getListIndexOfMaxValue(SampleList)
print(f"List Index Of Max Value:\n{ListIndexOfMaxValue} {type(ListIndexOfMaxValue)}")
List Index Of Max Value:
[2, 5] <class 'list'>
使用例3
SampleList = ['a','b','c','d','e']
ListIndexOfMaxValue = getListIndexOfMaxValue(SampleList)
print(f"List Index Of Max Value:\n{ListIndexOfMaxValue} {type(ListIndexOfMaxValue)}")
List Index Of Max Value:
[4] <class 'list'>
使用例4
SampleList = ['b','c','a','ccc','bbb']
ListIndexOfMaxValue = getListIndexOfMaxValue(SampleList)
print(f"List Index Of Max Value:\n{ListIndexOfMaxValue} {type(ListIndexOfMaxValue)}")
List Index Of Max Value:
[3] <class 'list'>
まとめ
Pythonのリスト(配列)はPython標準で使えるデータ型であり、Pythonでプログラムする上でよく使うものとなっております。この記事では、Pythonによるリスト(配列)内で最大値を持つ要素番号を取得する方法を紹介しました。ぜひ活用してみてください。
関連検索ワード
How to get a list index of max value in the list?
関連キーワード
python, 入門, 初心者, リスト, 配列, 要素番号, 取得, 最大値, list, element, get, index, max, value