So I want to find a number that appears more than once in the list. I want the position of the first one.
Example: Say I want 3
s = [1,2,3,4,5,3,9,8] => s[2] appears first
|
So I want to find a number that appears more than once in the list. I want the position of the first one. Example: Say I want 3
|
|||
|
|
|
|||
|
|
|
A little bit ambiguous question. If you just want to find index of first occurrence of specific element, you should use list.index() method:
But if you
in general (without element value given), seems you can
|
|||
|
|
Unless I'm misunderstanding your question, this should do the trick:
This should give you the index of the first occurrence of the first element that appears multiple times in the list If this is not what you're after, please leave a comment and I'll edit the code. |
|||
|
|
The function below returns the index of the first appearance of a duplicate
|
|||
|
|
|
This is another way of doing it.. If present, it will return the first index.. If there are no duplicates available, it will raise IndexError.
|
|||
|
|
|
Yet another way of doing it:
|
|||
|
|
will return
|
|||||||||
|