for y in range(0,iNumItems): print(str(y)) How do i make the output go IN ORDER 0 1 2 3 4 5 6 etc.
instead of 0 1 10 11 12 13 14 2 3 4 5 6 7 8 9 -- http://mail.python.org/mailman/listinfo/python-list
for y in range(0,iNumItems): print(str(y)) How do i make the output go IN ORDER 0 1 2 3 4 5 6 etc.
instead of 0 1 10 11 12 13 14 2 3 4 5 6 7 8 9 -- http://mail.python.org/mailman/listinfo/python-list