check if anything in a list is in a string python
y = any(x in String for x in List)
check if anything in a list is in a string python
y = any(x in String for x in List)
any in python
The any() function takes an iterable (list, string, dictionary etc.) in Python.
The any() function returns the boolean value:
True if at least one element of an iterable is true
False if all elements are false or if an iterable is empty
Example:
some_list = [1, 2, 3]
print(any(some_list)) # True
another_list = []
print(any(another_list)) # False
python any in string
if any(word in 'some one long two phrase three' for word in list_):
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us