“Comment vérifier une sous-chaîne dans Python” Réponses codées

La chaîne Python contient

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

Comment vérifier une sous-chaîne dans 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 Vérifiez si la chaîne contient une sous-chaîne

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 Vérifiez si la valeur en chaîne

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

Réponses similaires à “Comment vérifier une sous-chaîne dans Python”

Questions similaires à “Comment vérifier une sous-chaîne dans Python”

Plus de réponses similaires à “Comment vérifier une sous-chaîne dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code