小码哥的IT人生

Python 列表 index() 方法

Python基础 2022-06-06 15:26:32小码哥的IT人生shichen

Python 列表 index() 方法

实例

值 "cherry" 的位置是:

fruits = ['apple', 'banana', 'cherry']
x = fruits.index("cherry")

完整实例:

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

定义和用法

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

语法

list.index(element)

参数值

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

更多实例

示例代码:

值 32 的位置是:

fruits = [4, 55, 64, 32, 16, 32]
x = fruits.index(32)

完整实例:

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

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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024