The list.index(x)
function returns the index in the list of the first item whose value is x
.
Is there a function, list_func_index()
, similar to the index()
function that has a function, f()
, as a parameter. The function, f()
is run on every element, e
, of the list until f(e)
returns True
. Then list_func_index()
returns the index of e
.
Codewise:
>>> def list_func_index(lst, func):
for i in range(len(lst)):
if func(lst[i]):
return i
raise ValueError('no element making func True')
>>> l = [8,10,4,5,7]
>>> def is_odd(x): return x % 2 != 0
>>> list_func_index(l,is_odd)
3
Is there a more elegant solution? (and a better name for the function)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…