gpt4 book ai didi

python - 最小索引内置函数

转载 作者:太空宇宙 更新时间:2023-11-04 07:39:47 25 4
gpt4 key购买 nike

<分区>

Python 有一个内置函数 min,它返回 iterable 中的最小值。

这对于使您的代码简短明了非常有用。然而,很多时候我发现自己实现了自己的 minIndex 函数:

def minIndex(v):
ret = -1
for i in xrange(len(v)):
if ret < 0 or v[ret]>v[i]:
ret = i
return ret

Python 是否提供了 minIndex 内置实现?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com