In Python, how do you get the last element of a list?
|
closed as not constructive by Mehrdad, Tim Post♦ Aug 21 '12 at 5:17
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
In fact, you can do much more with this syntax. The You can also set list elements in this way. For instance:
|
|||||||||||||
|
|
If your str() or list() objects might end up being empty as so: The significance of this is:
Where the distinction being made is that returning an empty list object or empty str object is more "last element"-like then an exception object. |
|||||
|
|
You can also do:
It depends on what you want to do with your list because the pop() method will delete the last element. |
||||
|
|
|
The simplest way to display last element in python is
there are many other method to achieve such a goal but these are short and sweet to use. |
||||
|
|
|
If you've had or are currently having a fling/love affair with Scheme, try reading this: http://www.billthelizard.com/2010/10/sicp-24-implementing-cons-car-and-cdr.html and then implement it the other way around ;) |
|||
|
|
|
To get the last element of a for loop in python, you have to end the loop and then convert the parameters to a string element in that case the last element or result will only be printed. An example is this little piece of code to compute the factorial of
|
|||||
|

