from Guido's tutorial:

The given end point is never part of the generated list; range(10) generates
a list of 10 values, the legal indices for items of a sequence of length 10.
It is possible to let the range start at another number, or to specify a
different increment (even negative; sometimes this is called the `step')

On 7/19/07, elis aeris <[EMAIL PROTECTED]> wrote:

I ran this


for x in range(5,10):
    print x




and OP was

5
6
7
8
9



why is that? shouldn't it print


t
6
7
8
9
10?

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to