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