show/hide this revision's text 3 refactored the whole mess

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 ;)

show/hide this revision's text 2 added 2 characters in body

Mind if i refactor this a bit?

def digit(n):
    for i in itertools.count():
        yield (i+1, i%n+1, not i%n)

gotta think about the counter class for a bit... what is it supposed to do anyway?

show/hide this revision's text 1

Mind if i refactor this a bit?

def digit(n):
    for i in itertools.count():
        yield (i+1, not i%n)

gotta think about the counter class for a bit... what is it supposed to do anyway?