Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 5 down vote accepted
listOfStuff =([a,b], [c,d], [e,f], [f,g])

for item in listOfStuff[1:3]:
    print item

You have to iterate over a slice of your tuple. The 1 is the first element you need and 3 (actually 2+1) is the first element you don't need.

Elements in a list are numerated from 0:

listOfStuff =([a,b], [c,d], [e,f], [f,g])
               0      1      2      3

[1:3] takes elements 1 and 2.

share|improve this answer
So if I wanted to go from the second item to the next to last item in the list I would do for item in listOfStuff[1:len(listOfStuff)] – ccwhite1 Mar 31 '11 at 16:37
@ccwhite1: No, you would rather do listOfStuff[1:len(listOfStuff)- 1] or just listOfStuff[1: -1]. BTW, do you care to elaborate what was your main reason to use range in your question? Thanks – eat Mar 31 '11 at 20:03
@eat: no, listOfStuff[1:-1] ignores the last element. @ccwhite1: use listOfStuff[1:] – eumiro Apr 1 '11 at 6:21
no, listOfStuff[1:len(listOfStuff)- 1] and listOfStuff[1: -1] will both give the same elements (ignoring first and last, as what ccwhite1 IMHO just asked). Thanks – eat Apr 1 '11 at 6:30

You want to use slicing.

for item in listOfStuff[1:3]:
    print item
share|improve this answer
wrong indices, see above – gurney alex Mar 31 '11 at 15:16
Ouch, I never get slicing indices wrong, and when I tested it in the command line I was too hurried and thought I got the correct results when they weren't. I'll edit it in and test more thoroughly next time. – Harpyon Mar 31 '11 at 15:21

A very efficient way to iterate over a slice of a list would be to use islice() from the itertools module:

from itertools import islice

listOfStuff = (['a','b'], ['c','d'], ['e','f'], ['g','h'])

for item in islice(listOfStuff, 1, 3):
    print item

# ['c', 'd']
# ['e', 'f']
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.