|
Last elements in a Perl or Python list
How do we refer to the elements of a list? By index number, starting at zero and stopping one short of the number of elements in the list. So a 20 element list has element numbers 0 to 19.
How can we refer to the last element, then? We could write an expression based on the length of the list - so
mylist[len(mylist)-1] in Python
$mylist[@mylist-1] or $mylist[$#mylist] in Perl.
That's going to get very messy if you want to do a lot of work on the end elements of a list, so (in both Perl and Python), you can refer to members of a list by a negative position number, meaning "number of positions from the end".
So:
mylist[-1] - last element of a list in Python
$mylist[-2] - next to last (penultimate) element of a list in Perl (written 2007-08-16 10:45:30)
Associated topics are indexed under P208 - Perl - ListsY111 - Python - More on Collections and Sequences
Some other Articles
Good to be homeTroy, up state New YorkPython class rattling aroundRegular expressions made easy - building from componentsLast elements in a Perl or Python listHeading Upstate New YorkRuby, Ruby, Ruby. Rails, Rails, Rails.Plastic or ChinaIn the USA for a few daysFrom Leeds
|
2259 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|