[EMAIL PROTECTED] wrote: > 2) for i in range(A, B, STEP): > ...do something...
Note that the most common use of this is something like:
t = 1, 2, 3
for i in range(len(t)):
print i, t[i]
This is best accomplished as:
t = 1, 2, 3
for i, e in enumerate(t):
print i, e
Tim Delaney
--
http://mail.python.org/mailman/listinfo/python-list
