“Se a substring não estiver em string python” Respostas de código

Se a substring não estiver em string python

fullstring = "StackAbuse"
substring = "tack"

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

String python contém

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

Se a substring não estiver em 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

Como verificar uma substring no 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

python verifique se o valor na string

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

String python não contém

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

Respostas semelhantes a “Se a substring não estiver em string python”

Perguntas semelhantes a “Se a substring não estiver em string python”

Mais respostas relacionadas para “Se a substring não estiver em string python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código