“Sprawdź, czy ciąg zawiera Python” Kod odpowiedzi

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

fullstring = "StackAbuse"
substring = "tack"

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

Python Sprawdź, czy znak w ciągu

str="Hello, World!"
print("World" in str) # True
Red Team

Sprawdź, czy ciąg zawiera Python

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

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 - jak sprawdzić, czy ciąg zawiera słowo

string = "This contains a word" if "word" in string:     print("Found") else:     print("Not Found")
thecodeteacher

Odpowiedzi podobne do “Sprawdź, czy ciąg zawiera Python”

Pytania podobne do “Sprawdź, czy ciąg zawiera Python”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy ciąg zawiera Python” w Python

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

Przeglądaj inne języki kodu