str_list = ["one", "two", "three"] substr = "wo" if any(substr in str for str in str_list): print('Yes!')