“Python Sprawdź, czy ciąg zawiera podłoże” Kod odpowiedzi

String Python zawiera podłoże

fullstring = "StackAbuse"
substring = "tack"

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

Python Str zawiera słowo

fullstring = "StackAbuse"
substring = "tack"

if substring in fullstring:
    print "Found!"
else:
    print "Not found!"
Comfortable Cottonmouth

Ciąg Python zawiera

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

Jeśli nie podłoże w Pythonie String

>>> string = "Hello World"
>>> # Check Sub-String in String
>>> "World" in string
True
>>> # Check Sub-String not in String
>>> "World" not in string
False
peamdev

Jak sprawdzić podłoże w Pythonie

def find_string(string,sub_string):
	return string.find(sub_string)
#.find() also accounts for multiple occurence of the substring in the given string
san_bt

Python Sprawdź, czy ciąg zawiera podłoże

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

Odpowiedzi podobne do “Python Sprawdź, czy ciąg zawiera podłoże”

Pytania podobne do “Python Sprawdź, czy ciąg zawiera podłoże”

Więcej pokrewnych odpowiedzi na “Python Sprawdź, czy ciąg zawiera podłoże” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu