list1 = [1, 2, 33, 51]
I need to check is 4 the last index of the list.
just like list1.lastIndex() #=> 3
how can I do it in python?
|
|
|||
|
|
|
Did you mean By the way, to say properly, the index of your last element is 3, not 4. In most programming languages you count from 0, not from 1 (except fortran, matlab, lua or smalltalk for example). The elements indexes are 0, 1, 2, 3. Believe me, get used to this one. You will see why by trying to operate on If you're searchin for other method, you can try |
|||||||||||||||||
|
|
I guess you want
because the last index in your list would be |
|||
|
|
|
You can use the list length. The last index will be the length of the list minus one.
|
|||
|
|
list1[-1]) or the length of the array (len(list1))? – JMax Oct 25 '11 at 13:18len()that you want to find something else? – Karl Knechtel Oct 25 '11 at 13:24