“chaîne python en chaîne” Réponses codées

La chaîne Python contient une sous-chaîne

fullstring = "StackAbuse"
substring = "tack"

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

chaîne python en chaîne

>>> 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 valeur en chaîne

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

Réponses similaires à “chaîne python en chaîne”

Questions similaires à “chaîne python en chaîne”

Plus de réponses similaires à “chaîne python en chaîne” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code