Remember how we said that list elements could be of any type? That means we can have lists with lists as well! How do we get a value out of listlist?

Exactly! listlist[1] is the second element, which is l2. Adding [0] to it shows the element in l2 with the index 0 .

Might it be that we have to put the brackets next to each other?