“Jak sprawdzić podłoże w Pythonie” Kod odpowiedzi

Ciąg Python zawiera

>>> 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 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

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 “Jak sprawdzić podłoże w Pythonie”

Pytania podobne do “Jak sprawdzić podłoże w Pythonie”

Więcej pokrewnych odpowiedzi na “Jak sprawdzić podłoże w Pythonie” w Python

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

Przeglądaj inne języki kodu