I have the following tuple:
tuple = (65,67,5,67,34,76,67,231,98,67)
When I did the following:
print tuple3[2:8]
I got:
(5, 67, 34, 76, 67, 231)
I thought that 98
should be also included. Isn't 98
on the index number 8? Why isn't 98
included?
Thanks.