Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!border3.nntp.ams.giganews.com!border1.nntp.ams.giganews.com!nntp.giganews.com!xlned.com!feeder7.xlned.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'algorithm': 0.03; 'nested': 0.07; 'suppose': 0.07; 'tom': 0.07; 'iterate': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'aug': 0.13; 'enough.': 0.16; 'message-id:@dough.gmane.org': 0.16; 'received:173.11': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'mon,': 0.16; 'wrote:': 0.17; '>>>': 0.18; 'meant': 0.21; 'subject:problem': 0.22; 'runs': 0.22; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'values': 0.26; 'header:X-Complaints-To:1': 0.28; 'this?': 0.28; 'initial': 0.28; 'no,': 0.29; '+0200,': 0.33; 'to:addr:python- list': 0.33; 'clear': 0.35; 'sequence': 0.35; 'pm,': 0.35; 'something': 0.35; 'there': 0.35; 'received:org': 0.36; 'but': 0.36; "didn't": 0.36; 'subject:: ': 0.38; 'mean': 0.38; 'some': 0.38; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; '10,000': 0.65; '100': 0.78; 'subject:looking': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Emile van Sebille Subject: Re: looking for a neat solution to a nested loop problem Date: Mon, 06 Aug 2012 11:11:11 -0700 References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 173-11-108-137-sfba.hfc.comcastbusiness.net User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20120713 Thunderbird/14.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 36 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1344276685 news.xs4all.nl 6961 [2001:888:2000:d::a6]:38262 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26643 On 8/6/2012 10:14 AM Tom P said... > On 08/06/2012 06:18 PM, Nobody wrote: >> On Mon, 06 Aug 2012 17:52:31 +0200, Tom P wrote: >> >>> consider a nested loop algorithm - >>> >>> for i in range(100): >>> for j in range(100): >>> do_something(i,j) >>> >>> Now, suppose I don't want to use i = 0 and j = 0 as initial values, but >>> some other values i = N and j = M, and I want to iterate through all >>> 10,000 values in sequence - is there a neat python-like way to this? >> >> for i in range(N,N+100): >> for j in range(M,M+100): >> do_something(i,j) >> >> Or did you mean something else? > > no, I meant something else .. > > j runs through range(M, 100) and then range(0,M), and i runs through > range(N,100) and then range(0,N) > > .. apologies if I didn't make that clear enough. > for i in range(N,N+100): for j in range(M,M+100): do_something(i % 100 ,j % 100) Emile