W3docs

How do I get the last element of a list?

To get the last element of a list, you can use negative indexing.

To get the last element of a list, you can use negative indexing. The index -1 refers to the last element, -2 refers to the second last element, and so on.

Here's an example:

Get the last element of a list using -1 index in Python

python— editable, runs on the server

<div class="alert alert-info flex not-prose"> Watch a course <span class="hidden md:block">Watch a video course </span> Python - The Practical Guide</div>

You can also use the len() function to get the last element of a list. The len() function returns the number of elements in a list, so you can use it to get the index of the last element.

Here's an example:

Get the last element of a list using length of the list in Python

python— editable, runs on the server