Python tidak mengandung ruang

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