On Tue, Oct 13, 2009 at 11:55 PM, Andre Engels <[email protected]> wrote:
> for i in range(sys.maxint):
> if i % 100 == 0:
> print i
Grmbl.... cut-and-paste error... I meant of course:
for i in xrange(sys.maxint):
if i % 100 == 0:
print i
--
André Engels, [email protected]
--
http://mail.python.org/mailman/listinfo/python-list
