Answer to Question #86406 in Python for Kirsten

Question #86406
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 string
contains = all(item in s for item in lst)

# print result (True/False)
print(contains)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS