Python 列表 index() 方法

实例

值 "cherry" 的位置是:

  1. fruits = ['apple', 'banana', 'cherry']
  2. x = fruits.index("cherry")
  3. print(x)

定义和用法

index() 方法返回指定值首次出现的位置。


语法

  1. list.index(element)
参数值
参数描述
element必需。任何类型(字符串、数字、列表等)。要搜索的值。

更多实例

值 32 的位置是:

  1. fruits = [4, 55, 64, 32, 16, 32]
  2. x = fruits.index(32)
  3. print(x)

注释:index() 方法仅返回值的首次出现。

分类导航