Mind if i refactor this a bit?
def digit(n):
for i in itertools.count():
yield (i%n+1, not i%n)
gotta think about
But actually you don't need that one, if you implement the whole thing as a simple iterator:
def counter(digits, base):
counter class = [0] * digits
def iterator():
for total in itertools.count(1):
for i in range(len(counter)):
counter[i] = (counter[i] + 1) % base
if counter[i]:
break
print total, list(reversed(counter))
yield list(reversed(counter))
return iterator()
c = counter(2, 4)
print list(itertools.islice(c, 10))
If you want to get rid of the print (debugging, is it?), go with a bit..while-loop.what is it supposed to do anyway?
This incindentally also solves your initial problem, because reversed returns a copy of the list.
Oh, and it's zero-based now ;)
