Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #30405 > unrolled thread

Re: howto handle nested for

Started byTim Chase <python.list@tim.thechases.com>
First post2012-09-28 10:28 -0500
Last post2012-09-28 10:28 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: howto handle nested for Tim Chase <python.list@tim.thechases.com> - 2012-09-28 10:28 -0500

#30405 — Re: howto handle nested for

FromTim Chase <python.list@tim.thechases.com>
Date2012-09-28 10:28 -0500
SubjectRe: howto handle nested for
Message-ID<mailman.1564.1348846037.27098.python-list@python.org>
On 09/28/12 09:39, Neal Becker wrote:
> I know this should be a fairly basic question, but I'm drawing a blank.
> 
> I have code that looks like:
>  
>   for s0 in xrange (n_syms):
>         for s1 in xrange (n_syms):
>             for s2 in xrange (n_syms):
>                 for s3 in xrange (n_syms):
>                     for s4 in range (n_syms):
>                         for s5 in range (n_syms):
> 
> Now I need the level of nesting to vary dynamically.  (e.g., maybe I need to add 
> for  s6 in range (n_syms))
> 
> Smells like a candidate for recursion.  Also sounds like a use for yield.  Any 
> suggestions? 

There was a good discussion on this back in 2008 that might be worth
reading over.  For some reason the mail.python.org archives[1] seem
to have broken threading on this topic (Andrew Reedick's reply using
exec() is waaay down in the archive, disassociated from the thread),
so here it is archived somewhere else where the 2 pages of threading
seems more manageable/accurate:

http://www.velocityreviews.com/forums/t585147-creating-unique-combinations-from-lists.html

-tkc

[1]
http://mail.python.org/pipermail/python-list/2008-January/487851.html




[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web