“ciąg Python w ciągu” Kod odpowiedzi

String Python zawiera podłoże

fullstring = "StackAbuse"
substring = "tack"

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

ciąg Python w ciągu

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

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 wartość w ciągu

def is_value_in_string(value: str, the_string: str):
    return value in the_string.lower()
DeuxAlpha

Odpowiedzi podobne do “ciąg Python w ciągu”

Pytania podobne do “ciąg Python w ciągu”

Więcej pokrewnych odpowiedzi na “ciąg Python w ciągu” w Python

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

Przeglądaj inne języki kodu