“Comprend Python” 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

La chaîne Python contient

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

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

Comprend Python

if "blah" in somestring: 
    continue
Frodo Swagg1ns

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 à “Comprend Python”

Questions similaires à “Comprend Python”

Plus de réponses similaires à “Comprend Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code