昨日、id:nullpobugさんに教えてもらった「from itertools import count」でリセットしたくなったからやってみた。おまけに初期値も。
>>> from itertools import count >>> c = count() >>> c.next() 0 >>> c.next() 1 >>> c.next() 2 >>> c = count(0) >>> c.next() 0 >>> c.next() 1 >>> c.next() 2 >>> c = count(5) >>> c.next() 5 >>> c.next() 6 >>> c.next() 7 >>>
こりゃ便利。