Course Content
Python Data Structures
Python Data Structures
Nested 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:
Task
Construct a list called list_2
containing these elements:
[1, [2, 3], 4, [5, 6], 7]
Everything was clear?
Section 1. Chapter 2