Iterator for circulating a list

  • Thread starter =?ISO-8859-1?Q?BJ=F6rn_Lindqvist?=
  • Start date
?

=?ISO-8859-1?Q?BJ=F6rn_Lindqvist?=

L = somelist

idx = 0
while True:
item = L[idx]
# Do something with item
idx = (idx + 1) % len(L)

wouldn't it be cool if there was an itertool like this:

def circulate(L, begin = 0, step = 1):
idx = begin
while True:
yield L[idx]
idx = (idx + step) % len(L)

for x in circulate(range(10)):
print 'at', x,'!'

Or maybe someone knows an even better way of expressing the above code?
 
H

Hrvoje Niksic

BJörn Lindqvist said:
L = somelist

idx = 0
while True:
item = L[idx]
# Do something with item
idx = (idx + 1) % len(L)

wouldn't it be cool if there was an itertool like this:

def circulate(L, begin = 0, step = 1):
idx = begin
while True:
yield L[idx]
idx = (idx + step) % len(L)

for x in circulate(range(10)):
print 'at', x,'!'

How about itertools.cycle?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,678
Members
48,796
Latest member
Greg L.

Latest Threads

Top