6
ทำไมไม่มีฟังก์ชั่น xrange ใน Python3
เมื่อเร็ว ๆ นี้ฉันเริ่มใช้ 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 …
273
python
python-3.x
pep
xrange