How to use 'python find first occurrence in list' in Python

Every line of 'python find first occurrence in list' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
59def list_find(l, element):
60 for i, e in enumerate(l):
61 if e == element:
62 return i
63 return None

Related snippets