def fonction(x):
    if (x < -1) or (x >= 7):
        return True
    else:
        return False
