“Überprüfen Sie, ob String Python enthält” Code-Antworten

Wenn Substring nicht in String Python

fullstring = "StackAbuse"
substring = "tack"

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

Python überprüfen, ob Zeichen in String

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

Überprüfen Sie, ob String Python enthält

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

Wenn Substring nicht in String 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 -Überprüfung, ob die Zeichenfolge Substring enthält

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 - So überprüfen Sie, ob eine Zeichenfolge Wort enthält

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

Ähnliche Antworten wie “Überprüfen Sie, ob String Python enthält”

Fragen ähnlich wie “Überprüfen Sie, ob String Python enthält”

Weitere verwandte Antworten zu “Überprüfen Sie, ob String Python enthält” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen