“Comment vérifier une chaîne dans If instruction Python” Réponses codées

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

Comment vérifier une chaîne dans If instruction Python

if var == 'stringone' or var == 'stringtwo':
    do_something()
Modern Manx

Comment vérifier une chaîne dans If instruction Python

if (var is 'stringone') or 'stringtwo':
    dosomething()
Modern Manx

Réponses similaires à “Comment vérifier une chaîne dans If instruction Python”

Questions similaires à “Comment vérifier une chaîne dans If instruction Python”

Plus de réponses similaires à “Comment vérifier une chaîne dans If instruction Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code