“Python включает в себя строку” Ответ

Строка Python содержит подстроение

fullstring = "StackAbuse"
substring = "tack"

if fullstring.find(substring) != -1:
    print "Found!"
else:
    print "Not found!"
riffrazor

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

fullstring = "StackAbuse"
substring = "tack"

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

Строка Python содержит

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

Python включает в себя строку

from re import search

fullstring = "StackAbuse"
substring = "tack"

if search(substring, fullstring):
    print "Found!"
else:
    print "Not found!"
Lucas Juan

Ответы похожие на “Python включает в себя строку”

Вопросы похожие на “Python включает в себя строку”

Больше похожих ответов на “Python включает в себя строку” по Python

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

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