“Incluye pitón” Código de respuesta

Python String contiene subcadena

fullstring = "StackAbuse"
substring = "tack"

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

Python String contiene

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

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

Incluye pitón

if "blah" in somestring: 
    continue
Frodo Swagg1ns

Python incluye cadena

from re import search

fullstring = "StackAbuse"
substring = "tack"

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

Respuestas similares a “Incluye pitón”

Preguntas similares a “Incluye pitón”

Más respuestas relacionadas con “Incluye pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código