def fonction(x):
    if (x >= 3) and (x <=10):
        return True
    else:
        return False
