python 返回列表中某个值的索引方法

时间:2021-11-12 14:23:18

如下所示:

?
1
2
3
4
5
list = [5,6,7,9,1,4,3,2,10]
 
list.index(9)
 
out:3

同时可以返回列表中最大值的索引list.index(max(list))

最小值索引list.index(min(list))

以上这篇python 返回列表中某个值的索引方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/weixin_42442855/article/details/82824083