Comment puis-je itérer sur une liste d'objets, en accédant aux éléments précédents, actuels et suivants ? Comme ce code C/C++, en Python ?
foo = somevalue;
previous = next = 0;
for (i=1; i<objects.length(); i++) {
if (objects[i]==foo) {
previous = objects[i-1];
next = objects[i+1];
}
}