Hi, > Are there any ways to speed up the for/xrange loop? You can use psyco.
The following example should be about 4-times as fast as your example:
import psyco
psyco.full()
def f():
imax = 1000000000
a = 0
for i in xrange(imax):
a += 10
print a
f()
regards,
Roland
--
http://mail.python.org/mailman/listinfo/python-list
