“Строка 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

Как проверить на подстроение в Python

def find_string(string,sub_string):
	return string.find(sub_string)
#.find() also accounts for multiple occurence of the substring in the given string
san_bt

Проверка питона, если значение в строке

def is_value_in_string(value: str, the_string: str):
    return value in the_string.lower()
DeuxAlpha

Ответы похожие на “Строка Python в строке”

Вопросы похожие на “Строка Python в строке”

Больше похожих ответов на “Строка Python в строке” по Python

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

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