Python 列表 index() 方法
定义和用法
The index()
方法返回指定值首次出现的索引位置。
语法
list.index(elmnt)
参数值
参数 | 描述 |
---|---|
elmnt | 必填。任何类型(字符串、数字、列表等)。要搜索的元素。 |
更多示例
注意: The index()
方法只返回值的首次出现。
The index()
方法返回指定值首次出现的索引位置。
list.index(elmnt)
参数 | 描述 |
---|---|
elmnt | 必填。任何类型(字符串、数字、列表等)。要搜索的元素。 |
注意: The index()
方法只返回值的首次出现。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]