2008-11-20から1日間の記事一覧

ナンプレ(2)

今までの勉強をふまえて、前回のジェネレータをクラスで書く。 class perm: def __init__(self, l): self.l = l self.n = len(l) self.i = 0 if self.n > 1: self.perm = perm(l[1:]) def __iter__(self): return self def next(self): if self.n > 1: while…