使用for循环查找最小数字及其位置的示例:
def smallest(list):
smallest = 1000000
smallestposition=-1
for pos,value in enumerate(list):
if(value < smallest):
smallest = value
smallestposition = pos
return smallest,smallestposition
print smallest([23,444,222,111,56,7,45])
答案 0 :(得分:2)
将enumerate()
用于递归函数是没有意义的,因为enumering是迭代的,这是&#34;相反的&#34;递归。
此函数的递归版本可以是:
def smallest(lst, idx=0):
s = (lst[idx], idx)
if idx == len(lst) - 1:
return s
return min(s, smallest(lst, idx + 1))