“Включает в себя Python” Ответ

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

fullstring = "StackAbuse"
substring = "tack"

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

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

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

Если подстроение не в String Python

>>> string = "Hello World"
>>> # Check Sub-String in String
>>> "World" in string
True
>>> # Check Sub-String not in String
>>> "World" not in string
False
peamdev

Включает в себя Python

if "blah" in somestring: 
    continue
Frodo Swagg1ns

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

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

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