# Python CodeRecipe|index()の使い方
❮ Home ❮ Tuple Methods
# index()の例1
Search for the first occurrence of the value 8, and return its
position:
thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5)x = thistuple.index(8)
print(x)
# index()の定義及び使い方
index()関数が最初の 指定された値のオカレンス。 値が見つからない場合、index()関数では例外が発生します。
# index()の構文
tuple.index(value)
# index()の引数
パラメータ 説明
value:必修。検索するアイテム
❮ Home ❮ Tuple Methods