“Beinhaltet Python” Code-Antworten

Die Python -String enthält Substring

fullstring = "StackAbuse"
substring = "tack"

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

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

Beinhaltet Python

if "blah" in somestring: 
    continue
Frodo Swagg1ns

Python enthält String

from re import search

fullstring = "StackAbuse"
substring = "tack"

if search(substring, fullstring):
    print "Found!"
else:
    print "Not found!"
Lucas Juan

Ähnliche Antworten wie “Beinhaltet Python”

Fragen ähnlich wie “Beinhaltet Python”

Weitere verwandte Antworten zu “Beinhaltet Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen