Python fait la chaîne contient de l'espace

def space(text):
    if ' ' in text:
        return True
    else: return False
Shy Shrike