例如:
查找字符串'cherry'的位置索引:
fruits = ['apple', 'banana', 'cherry']x = fruits.index("cherry")print(x)
1、定义和用法
index()
方法返回指定值首次出现时的索引位置。
2、调用语法
list.index(elmnt)
3、参数说明
参数 | 描述 |
elmnt | 必需的参数, 任何类型(字符串,数字,列表等)。 要查找的元素 |
4、使用示例
例如:
查找值32的位置索引:
fruits = [4, 55, 64, 32, 16, 32]x = fruits.index(32)print(x)
注意:index()
方法仅返回该值第一次出现的索引位置。