Given the string, s, and the list, lst, associate the variable contains with True if every string in lst appears in s (and False otherwise). Thus, given the string Hello world and the list ["H", "wor", "o w"], contains would be associated with True.
1
Expert's answer
2019-03-15T02:58:43-0400
# given string
s = "Hello world"# and list
lst = ["H", "wor", "o w"]
# check if every item in list appears in stringcontains = all(itemin s foritemin lst)
# print result (True/False)
print(contains)
Comments