“Python String no contiene” Código de respuesta

Si la subcadena no en String Python

fullstring = "StackAbuse"
substring = "tack"

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

Si la subcadena no en 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 String no contiene

str = '£35,000 per year'
# check for '£' character in the string
'£' not in str
# >> False
'£' in str
# >> True 
Worrisome Wallaby

Respuestas similares a “Python String no contiene”

Preguntas similares a “Python String no contiene”

Más respuestas relacionadas con “Python String no contiene” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código