0
List function index
The list function index() returns the index of a given value in the list, but if I have a list of below things=[1,2,'a','b',3.0,4.5, 1] Here I've value "1" twice in the list. When use print(things.index(1)) it returns "0". My question here is what about another index of the same value? and how to get the index of next occurrences?
1 Odpowiedź
0
Thanks Brent,
Yes programetically it can be done, as you said, but my question is to get the index of next occurance index by using list functions, if any. Is it possible?