# Python CodeRecipe|count()の使い方

Home Tuple Methods

# count()の例1

Return the number of times the value 5 appears in the tuple:

    thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5)x = thistuple.count(5)
print(x)

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

count()関数は、 指定した値がタプルに表示されます。

# count()の構文

tuple.count(value)

# count()の引数

パラメータ 説明

value:必修。検索するアイテム

Home Tuple Methods