Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
List Indexing | List
Python Data Structures

List IndexingList Indexing

In Python, lists allow for element indexing. This means we can access each item in the list by its index. Remember, indexing in lists starts at 0. So, the first item is at index 0, the second at index 1, and so forth.

We've covered positive indexing, but there's also something called negative indexing. Negative indexing starts from the end of the list. For instance, index -1 refers to the last item, index -2 points to the second-to-last item, and so on.

Let's put this into practice.

Tarea

You're given: list_1 = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']. Your task is to extract the first, third, fifth, and seventh items from this list and create a new list with these items, using positive indices only.

¿Todo estuvo claro?

Sección 1. Capítulo 4
toggle bottom row
course content

Contenido del Curso

Python Data Structures

List IndexingList Indexing

In Python, lists allow for element indexing. This means we can access each item in the list by its index. Remember, indexing in lists starts at 0. So, the first item is at index 0, the second at index 1, and so forth.

We've covered positive indexing, but there's also something called negative indexing. Negative indexing starts from the end of the list. For instance, index -1 refers to the last item, index -2 points to the second-to-last item, and so on.

Let's put this into practice.

Tarea

You're given: list_1 = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']. Your task is to extract the first, third, fifth, and seventh items from this list and create a new list with these items, using positive indices only.

¿Todo estuvo claro?

Sección 1. Capítulo 4
toggle bottom row
some-alt