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.
59 def list_find(l, element): 60 for i, e in enumerate(l): 61 if e == element: 62 return i 63 return None