“Si la substrat n'est pas en chaîne python” Réponses codées

Si la substrat n'est pas en chaîne python

fullstring = "StackAbuse"
substring = "tack"

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

La chaîne Python contient

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

Si la substrat n'est pas en chaîne 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

Comment vérifier une sous-chaîne dans Python

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 Vérifiez si la valeur en chaîne

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

La chaîne Python ne contient pas

str = '£35,000 per year'
# check for '£' character in the string
'£' not in str
# >> False
'£' in str
# >> True 
Worrisome Wallaby

Réponses similaires à “Si la substrat n'est pas en chaîne python”

Questions similaires à “Si la substrat n'est pas en chaîne python”

Plus de réponses similaires à “Si la substrat n'est pas en chaîne python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code