python列表中怎么查看索引值

avatar
作者
猴君
阅读量:0

要查看列表中特定元素的索引值,可以使用index()方法。例如:

my_list = [10, 20, 30, 40, 50]  # 查看元素30的索引值 index = my_list.index(30) print("元素30的索引值是:", index) 

这将输出:

元素30的索引值是: 2 

如果要查看列表中所有元素的索引值,可以使用循环遍历列表并输出每个元素的索引值。例如:

my_list = [10, 20, 30, 40, 50]  for index, element in enumerate(my_list):     print(f"元素{element}的索引值是:{index}") 

这将输出:

元素10的索引值是:0 元素20的索引值是:1 元素30的索引值是:2 元素40的索引值是:3 元素50的索引值是:4 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!