“Trouver la chaîne dans String Python” Réponses codées

Python Str contient un mot

fullstring = "StackAbuse"
substring = "tack"

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

Trouver la chaîne dans String Python

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

Réponses similaires à “Trouver la chaîne dans String Python”

Questions similaires à “Trouver la chaîne dans String Python”

Plus de réponses similaires à “Trouver la chaîne dans String Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code