I've been reading this Python 3.0.1 tutorial(http://docs.python.org/3.0/tutorial/controlflow.html), and now I'm stuck at the second example in 4.3. This is what the example says the output should look like:range(5, 10) 5 through 9
range(0, 10, 3) 0, 3, 6, 9 range(-10, -100, -30) -10, -40, -70 But what I receive instead is the same as what I input (i.e. range(5, 10) just returns range(5, 10)).
_______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor