Exemple de comment vérifier si un mot existe dans une liste de mots ou phrases en python ?
Soit la liste L suivante:
L = ['Bonjour','Salut','Salut, comment ca va ?']
Pour vérifier si le mot "comment" est dans un des éléments de la liste on peut faire comme ceci:
any("comment" in s for s in L)
donne
True
Mais
any("Hello" in s for s in L)
donne
False
Références
- any | Python Doc
- Check if a Python list item contains a string inside another string | stackoverflow
- python: check if a line has one of the strings in a list [duplicate] | stackoverflow
- Check if multiple strings exist in another string | stackoverflow