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

In Lisp, you can have something like this:

(setf my-stuff '(1 2 "Foo" 34 42 "Ni" 12 14 "Blue"))
(format t "~{~d ~r ~s~%~}" my-stuff)

What would be the most Pythonic way to iterate over that same list? The first thing that comes to mind is:

mystuff = [1, 2, "Foo", 34, 42, "Ni", 12, 14, "Blue"]
for x in xrange(0, len(mystuff)-1, 3):
    print "%d %d %s" % tuple(mystuff[x:x+3])

But that just feels awkward to me. I'm sure there's a better way?


Well, unless someone later provides a better example, I think gnibbler's solution is the nicest\closest, though it may not be quite as apparent at first how it does what it does:

mystuff = [1, 2, "Foo", 34, 42, "Ni", 12, 14, "Blue"]
for x in zip(*[iter(mystuff)]*3):
    print "{0} {1} {2}".format(*x)
share|improve this question
1  
As an aside, isn't awkward such a terribly wonderful word? It just looks awkward! – Wayne Werner Jul 1 '10 at 20:48
2  
It looks awkward in comparison but it really isn't that bad. – ChaosPandion Jul 1 '10 at 20:49
2  
+1 because I have no clue if you were referring to my comment or the code. Please don't clarify, the ambiguity is much more entertaining/interesting! – Wayne Werner Jul 1 '10 at 21:06

4 Answers

up vote 6 down vote accepted
mystuff = [1, 2, "Foo", 34, 42, "Ni", 12, 14, "Blue"]
for x in zip(*[iter(mystuff)]*3):
    print "%d %d %s"%x

Or using .format

mystuff = [1, 2, "Foo", 34, 42, "Ni", 12, 14, "Blue"]
for x in zip(*[iter(mystuff)]*3):
    print "{0} {1} {2}".format(*x)

If the format string is not hardcoded, you can parse it to work out how many terms per line

from string import Formatter
num_terms = sum(1 for x in Formatter().parse("{0} {1} {2}"))

Putting it all together gives

mystuff = [1, 2, "Foo", 34, 42, "Ni", 12, 14, "Blue"]
fmt = "{0} {1} {2}"
num_terms = sum(1 for x in Formatter().parse(fmt))
for x in zip(*[iter(mystuff)]*num_terms):
    print fmt.format(*x)
share|improve this answer
I really like this solution, and I was really confused at first but after hacking at the code that is really elegant. – Wayne Werner Jul 1 '10 at 21:20
@Wayne Werner, good on you for working out why it works – gnibbler Jul 1 '10 at 21:28

For starters, I'd use the newer string formatting methods in 2.6+

print "{0} {1} {2}".format(*mystuff[x:x+3])
share|improve this answer
I had forgot about that one. Cleans it up a little... – Wayne Werner Jul 1 '10 at 21:02

I think join is the most similar feature in Python:

(format t "~{~D, ~}" foo)

print(foo.join(", "))

It's a little worse when you have multiple items inside, as you see, though if you have a group-by function (which is really useful anyway!), I think you can make it work without too much trouble. Something like:

mystuff = [1, 2, "Foo", 34, 42, "Ni", 12, 14, "Blue"]
print(["%d %d %s" % x for x in group(mystuff, 3)].join("\n"))
share|improve this answer
Yes, with the addition of a specialized generator function you could make it look really nice. – Wayne Werner Jul 1 '10 at 21:13
Yeah, I guess it depends on how much you want to cheat. You could port FORMAT to Python and say FORMAT(True, "~{~d ~r ~s~%~}", my_stuff), if you were really bored some weekend. :-) – Ken Jul 1 '10 at 21:18
I've been tempted! Of course I also wish that the ~r were part of Python libs, too... There's already a module on sourceforge: sourceforge.net/projects/pynum2word – Wayne Werner Jul 1 '10 at 21:27

I'd say the most Pythonic would be to make the list deeper:

mystuff = [(1, 2, "Foo"), (34, 42, "Ni"), (12, 14, "Blue")]
for triplet in mystuff:
    print "%d %d %s" % triplet
share|improve this answer
that's basically what gnibblers solution creates: [x for x in zip(*[iter(mystuff)]*3)] = [(1, 2, 'foo'), (34, 42, 'ni'), (12, 14, 'blue')] Pretty slick, neh? – Wayne Werner Jul 2 '10 at 12:28
I know that, but I think it's more Pythonic just to have the list in that form to begin with. That was the original question, right? – Walter Mundt Jul 2 '10 at 13:12
Well, I was a little ambiguous, so I fixed the wording. I really was more interested in the iterating/formatting part - consuming a certain # of list values per iteration. But in terms of the whole "program", your solution would be more pythonic – Wayne Werner Jul 2 '10 at 14:05

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.