John Salerno wrote: > for (int i = 0; i < 50; i += 5) > > How would that go in Python, in the simplest and most efficient way?
for i in xrange(0,50,5): print i -- http://mail.python.org/mailman/listinfo/python-list
John Salerno wrote: > for (int i = 0; i < 50; i += 5) > > How would that go in Python, in the simplest and most efficient way?
for i in xrange(0,50,5): print i -- http://mail.python.org/mailman/listinfo/python-list