python trouver plusieurs correspondances dans la chaîne

a_string = "A string is more than its parts!"
matches = ["more", "wholesome", "milk"]

if any(x in a_string for x in matches):
Annoying Anaconda