def seleccio(it):
    it1 = filter(lambda x: x.nseients == 4 and x.npeu == 0, it)
    it2 = map(lambda x: x.id, it1)
    return it2
