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

If I have a list comprehension that is essentially this:

result = [function(i,j,k,l) for i in range(3) for j in range(3)
    for k in range(3) for l in range(3)]

It does what I want, but it looks ugly. I'm fairly new to Python, but it seems that Python would have some kind of built-in to allow me to sum over all possible combinations of the 4 letters ijkl in a less cumbersome fashion. Is my intuition correct, or am I stuck staring at that long ugly line?

share|improve this question
Check out the itertools module. – Wooble Jan 30 at 19:08
3  
What you want to loop over is the Cartesian product, and you can use itertools.product (e.g. in your case, result = [function(*args) for args in itertools.product(range(3), repeat=4)]. This is a duplicate of lots of questions, but I admit it's sometimes hard to hit on the right phrase to search for. – DSM Jan 30 at 19:09
1  
@DSM Why not post this as an answer? – Lev Levitsky Jan 30 at 19:28
@LevLevitsky: 'cause I was hoping someone would choose a good dup.. – DSM Jan 30 at 19:35
For the record, I personally find your current code very clear and to the point, if ever so slightly verbose. – NPE Jan 30 at 19:42
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.