6
Python3にxrange関数がないのはなぜですか?
最近、私はPython3を使い始めましたが、xrangeに問題はありません。 簡単な例: 1) Python2: from time import time as t def count(): st = t() [x for x in xrange(10000000) if x%4 == 0] et = t() print et-st count() 2) Python3: from time import time as t def xrange(x): return iter(range(x)) def count(): st = t() [x for x …
273
python
python-3.x
pep
xrange