Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Nested List | List
course content

Contenido del Curso

Python Data Structures

Nested ListNested List

Items within a Python list can also be lists, resulting in nested lists, sometimes referred to as "lists within lists." Here's an example of a nested list:

Tarea

Construct a list called list_2 containing these elements:

[1, [2, 3], 4, [5, 6], 7]

¿Todo estuvo claro?

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

Contenido del Curso

Python Data Structures

Nested ListNested List

Items within a Python list can also be lists, resulting in nested lists, sometimes referred to as "lists within lists." Here's an example of a nested list:

Tarea

Construct a list called list_2 containing these elements:

[1, [2, 3], 4, [5, 6], 7]

¿Todo estuvo claro?

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