Vérifiez si quelque chose dans une liste est dans une chaîne Python
y = any(x in String for x in List)
itsanantk
y = any(x in String for x in List)
if any(ext in url_string for ext in extensionsToCheck):
print(url_string)
# To check if a certain element is contained in a list use 'in'
bikes = ['trek', 'redline', 'giant']
'trek' in bikes
# Output:
# True
listA = [item1, item2, item3]
if item4 in listA:
print('yes, item4 is in the list')
else:
print('no, item4 is not in the list')
if value in list:
#do stuff
#Also to check if it doesn't contain
if value not in list:
#do stuff
str in strList
# example
if 'qwe' in strList:
print('Yes!')