“Найдите строку в String Python” Ответ

Python Str содержит слово

fullstring = "StackAbuse"
substring = "tack"

if substring in fullstring:
    print "Found!"
else:
    print "Not found!"
Comfortable Cottonmouth

Найдите строку в String Python

>>> str = "Messi is the best soccer player"
>>> "soccer" in str
True
>>> "football" in str
False
Misty Macaw

Ответы похожие на “Найдите строку в String Python”

Вопросы похожие на “Найдите строку в String Python”

Больше похожих ответов на “Найдите строку в String Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования