Lets say I have a list
listOfStuff =([a,b], [c,d], [e,f], [f,g])
what I wan to do is iterate through the middle 2 components
for item in listOfStuff(range(2,3))
print item
the end result would be
[c,d]
[e,f]
Now that code does not work, but I hope it gets the gist of what I am trying to do across.