“Python Verifique se a string contém substring” Respostas de código

string python contém substring

fullstring = "StackAbuse"
substring = "tack"

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

python str contém palavra

fullstring = "StackAbuse"
substring = "tack"

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

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 a string contém substring

string = "My favourite programming language is Python"
substring = "Python"

if substring in string:
    print("Python is my favorite language")
elif substring not in string:
    print("Python is not my favourite language")
micheal d higgins left nut

Respostas semelhantes a “Python Verifique se a string contém substring”

Perguntas semelhantes a “Python Verifique se a string contém substring”

Mais respostas relacionadas para “Python Verifique se a string contém substring” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código