“Inclui Python” Respostas de código

string python contém substring

fullstring = "StackAbuse"
substring = "tack"

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

String python contém

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

Se a substring não estiver em 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

Inclui Python

if "blah" in somestring: 
    continue
Frodo Swagg1ns

Python inclui string

from re import search

fullstring = "StackAbuse"
substring = "tack"

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

Respostas semelhantes a “Inclui Python”

Perguntas semelhantes a “Inclui Python”

Mais respostas relacionadas para “Inclui Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código