> Considering the fact that choices[x] == x, shouldn't it be :
>     del choices[proxyq]

choices = [9,2,1,3,6,4,7,8,5,0]
for idx, x in enumerate(choices):
  print idx == x

False
False
False
True
False
False
False
False
False
False

Not always.
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to