“Vérifiez si la chaîne contient Python” 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

Python Vérifiez si le caractère en chaîne

str="Hello, World!"
print("World" in str) # True
Red Team

Vérifiez si la chaîne contient Python

>>> 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

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

Python - Comment vérifier si une chaîne contient un mot

string = "This contains a word" if "word" in string:     print("Found") else:     print("Not Found")
thecodeteacher

Réponses similaires à “Vérifiez si la chaîne contient Python”

Questions similaires à “Vérifiez si la chaîne contient Python”

Plus de réponses similaires à “Vérifiez si la chaîne contient Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code