python寻找list中最大值、最小值并返回其所在位置时间:2022-05-04 16:19:50c = [-10,-5,0,5,3,10,15,-20,25] print c.index(min(c)) # 返回最小值 print c.index(max(c)) # 返回最大值