elec=100
candidats= 4
nn=list([i for i in range(len(Pref))])
ZZ=IntegerRing()
PP=([0 for i in nn])
PP[0]=ZZ.random_element(0,elec)
for k in nn:
PP[k]=ZZ.random_element(0,elec-sum(PP[j]for j in nn[:k]))
PP[len(Pref)-1]= PP[len(Pref)-1] if (elec-sum(PP))== 0 else PP[len(Pref)-1]+(elec-sum(PP))
import random
PP1 = random.sample(PP, len(PP))
show(sum(PP))
show(PP)
show(PP1)
show(Pref)
def rz(l1,l2):
for k in range(len(l1)):
if l1[k] == 0 : del(l2[k])
show([len(PP),len(Pref)])
show(rz(PP,Pref))
The problem here begin with def rz...
I would like to delete the elements of the list Pref
which are in the same place than the 0 of PP
list (and after, or simultaneously the zero of the listPP
. But it doesn't work. I do not find my error. I was also wondering if it could be done by embeding two List comprehension
.