6
Perché non esiste alcuna funzione xrange in Python3?
Di recente ho iniziato a usare Python3 ed è la mancanza di xrange fa male. Esempio semplice: 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 …
273
python
python-3.x
pep
xrange