【Python入門】リスト(配列)内で特定の値を持つ要素数を取得する方法とは?リスト(配列)内で特定の値を持つ要素数の取得方法を徹底解説

Python

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

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

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

リスト(配列)内で特定の値を持つ要素数の取得(自作関数)

関数の定義

def countValueInList(input_list: list, input_value) -> int:
    return input_list.count(input_value)

使用例1

SampleList = [0,1,2,3,4,5,6,7,8,9]
NumberOfValueInList = countValueInList(SampleList, 5)
print(f"Number Of Value In List:\n{NumberOfValueInList} {type(NumberOfValueInList)}")
Number Of Value In List:
1 <class 'int'>

使用例2

SampleList = [0,1,0,1,2,0,1,2,3,4]
NumberOfValueInList = countValueInList(SampleList, 1)
print(f"Number Of Value In List:\n{NumberOfValueInList} {type(NumberOfValueInList)}")
Number Of Value In List:
3 <class 'int'>

使用例3

SampleList = [0,1,0,1,2,0,1,2,3,4]
NumberOfValueInList = countValueInList(SampleList, 999)
print(f"Number Of Value In List:\n{NumberOfValueInList} {type(NumberOfValueInList)}")
Number Of Value In List:
0 <class 'int'>

まとめ

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

関連検索ワード

How to count a number of specific value in the list?

関連キーワード

python, 入門, 初心者, リスト, 配列, 要素数, 取得, list, element, get, count

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