How to use 'if x in list python' in Python

Every line of 'if x in list python' 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
6def list_has(list, x):
7 try:
8 list.index(x)
9 return True
10 except ValueError:
11 return False
231def is_comprehension(x):
232 """Returns true if this is a comprehension type."""
233 return isinstance(x, (ObjectComprehension, SetComprehension, ArrayComprehension))

Related snippets