“La chaîne Python ne contient pas” Réponses codées

Si la substrat n'est pas en chaîne python

fullstring = "StackAbuse"
substring = "tack"

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

Si la substrat n'est pas en chaîne python

>>> string = "Hello World"
>>> # Check Sub-String in String
>>> "World" in string
True
>>> # Check Sub-String not in String
>>> "World" not in string
False
peamdev

La chaîne Python ne contient pas

str = '£35,000 per year'
# check for '£' character in the string
'£' not in str
# >> False
'£' in str
# >> True 
Worrisome Wallaby

Réponses similaires à “La chaîne Python ne contient pas”

Questions similaires à “La chaîne Python ne contient pas”

Plus de réponses similaires à “La chaîne Python ne contient pas” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code