[EMAIL PROTECTED] writes: > problem. If i do ..in range(1, 100000000).. (what I really need > sometimes), it takes few hundred megs of memory and slows > down. Are there other good ways for this simple problem? Generators?
use xrange instead of range. -- http://mail.python.org/mailman/listinfo/python-list