“Como verificar uma substring no Python” Respostas de código

String python contém

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

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

python verifique se o valor na string

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

Respostas semelhantes a “Como verificar uma substring no Python”

Perguntas semelhantes a “Como verificar uma substring no Python”

Mais respostas relacionadas para “Como verificar uma substring no Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código