6
Python3'te neden xrange fonksiyonu yok?
Son zamanlarda Python3 kullanmaya başladım ve xrange acıları yok. Basit bir örnek: 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): …
273
python
python-3.x
pep
xrange