Python/ref list index
来自菜鸟教程
<languages />
Python List index()方法
例
“樱桃”值的位置是什么:
fruits = ['apple', 'banana', 'cherry'] x = fruits.index("cherry")
定义和用法
The
index()
方法返回指定值首次出现时的位置。
句法
list.index(elmnt)
参数值
参数 | 描述 |
---|---|
elmnt | 需要。任何类型(字符串,数字,列表等)。要搜索的元素 |
更多例子
例
值32的位置是什么:
fruits = [4, 55, 64, 32, 16, 32] x = fruits.index(32)
注意:
The
index()
方法仅返回
first
值的出现。