python中index用法
时间: 2023-12-10 13:03:46 浏览: 106
Python中index()和seek()的用法(详解)
在 Python 中,index() 方法用于查找给定元素在列表中第一次出现的位置。
语法如下:
```
list.index(element)
```
其中,list 是列表,element 是要查找的元素。
如果列表中存在该元素,则返回该元素在列表中的索引值(即位置),否则会报错。
例如,下面的代码可以查找列表中元素 `'apple'` 第一次出现的位置:
```python
fruits = ['apple', 'banana', 'orange', 'apple']
index = fruits.index('apple')
print(index) # 输出 0
```
如果列表中不存在该元素,例如:
```python
fruits = ['banana', 'orange', 'grape']
index = fruits.index('apple') # 报错:ValueError: 'apple' is not in list
```
则会报错,提示该元素不在列表中。
阅读全文