Wenn Sie herausfinden möchten, ob sich ein ganzes Wort in einer durch Leerzeichen getrennten Liste von Wörtern befindet, verwenden Sie einfach:
def contains_word(s, w):
return (' ' + w + ' ') in (' ' + s + ' ')
contains_word('the quick brown fox', 'brown') # True
contains_word('the quick brown fox', 'row') # False
Diese elegante Methode ist auch die schnellste. Im Vergleich zu den Ansätzen von Hugh Bothwell und daSong:
>python -m timeit -s "def contains_word(s, w): return (' ' + w + ' ') in (' ' + s + ' ')" "contains_word('the quick brown fox', 'brown')"
1000000 loops, best of 3: 0.351 usec per loop
>python -m timeit -s "import re" -s "def contains_word(s, w): return re.compile(r'\b({0})\b'.format(w), flags=re.IGNORECASE).search(s)" "contains_word('the quick brown fox', 'brown')"
100000 loops, best of 3: 2.38 usec per loop
>python -m timeit -s "def contains_word(s, w): return s.startswith(w + ' ') or s.endswith(' ' + w) or s.find(' ' + w + ' ') != -1" "contains_word('the quick brown fox', 'brown')"
1000000 loops, best of 3: 1.13 usec per loop
Edit: Eine kleine Variante dieser Idee für Python 3.6+, ebenso schnell:
def contains_word(s, w):
return f' {w} ' in f' {s} '