“Python inclut la 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

Python Str contient un mot

fullstring = "StackAbuse"
substring = "tack"

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

La chaîne Python contient

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

Python inclut la chaîne

from re import search

fullstring = "StackAbuse"
substring = "tack"

if search(substring, fullstring):
    print "Found!"
else:
    print "Not found!"
Lucas Juan

Réponses similaires à “Python inclut la chaîne”

Questions similaires à “Python inclut la chaîne”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code