Answers for "python test if a string contains one of a list of substring"

2

python list contains substring

str_list = ["one", "two", "three"]
substr = "wo"
if any(substr in str for str in str_list):
	print('Yes!')
Posted by: Guest on September-01-2021

Code answers related to "python test if a string contains one of a list of substring"

Python Answers by Framework

Browse Popular Code Answers by Language