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

Если подстроение не в String 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

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 не содержит

str = '£35,000 per year'
# check for '£' character in the string
'£' not in str
# >> False
'£' in str
# >> True 
Worrisome Wallaby

Ответы похожие на “Если подстроение не в String Python”

Вопросы похожие на “Если подстроение не в String Python”

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

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

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