实例如下所示:
1
2
3
4
|
c = [ - 10 , - 5 , 0 , 5 , 3 , 10 , 15 , - 20 , 25 ]
print c.index( min (c)) # 返回最小值
print c.index( max (c)) # 返回最大值
|
以上这篇python寻找list中最大值、最小值并返回其所在位置的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://blog.sciencenet.cn/blog-350278-629028.html