Answers for "python check if a string from a list of string is a substring in a given string"

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 check if a string from a list of string is a substring in a given string"

Python Answers by Framework

Browse Popular Code Answers by Language