for item, i in enumerate(aa) print item this writing, it can print all values
for item, i in enumerate(aa)
if item == findit:
print item
this only print the first value, means it only print once then not print again,
where is wrong?
--
https://mail.python.org/mailman/listinfo/python-list
