word = 'access'
text = 'The entire house was __access__ible through that underground tunnel'
if word in text:
print('Yes, the word is in the text')
else:
print('Not found...')
最初の文字列が単語である必要はありません。任意の文字列で構いません。例えば、if 'some string with symb$ls' in text: とチェックすることもできます。