Answers for "if list item in string python"

3

how to check if any item in list is in anoter list

# checking all elements of list_B in list_A
list_A = [1, 2, 3, 4]
list_B = [2, 3]

check = any(item in list_A for item in list_B)

print(check)
# True
Posted by: Guest on January-14-2021
3

if list item in string python

if any(ext in url_string for ext in extensionsToCheck):
    print(url_string)
Posted by: Guest on November-18-2019
1

python list contains string

str in strList

# example
if 'qwe' in strList:
	print('Yes!')
Posted by: Guest on August-19-2021

Code answers related to "if list item in string python"

Python Answers by Framework

Browse Popular Code Answers by Language