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