0
Объясните, почему код не работает, когда слова нет в тексте!?
2 ответов
0
index() raises an error when the search item is not found. You would need to catch this error.
You could use the find() method, it will return -1 when the item is not found. The you would if to check if text.find(word) != -1
0
когда слова нет в тексте, возникает исключение. поэтому программа перестает выполняться из-за этой ошибки.
you can try just as if word in text :