“La chaîne Python contient une sous-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

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

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 chaîne contient une sous-chaîne

string = "My favourite programming language is Python"
substring = "Python"

if substring in string:
    print("Python is my favorite language")
elif substring not in string:
    print("Python is not my favourite language")
micheal d higgins left nut

Réponses similaires à “La chaîne Python contient une sous-chaîne”

Questions similaires à “La chaîne Python contient une sous-chaîne”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code