Preguntas etiquetadas con pep

273
¿Por qué no hay función xrange en Python3?

Recientemente comencé a usar Python3 y me duele la falta de xrange. Ejemplo simple: 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...