So let's say we have the list:
list1 = ["Apple", "Banana", "Cherry"]
If we print this with indexes:print(list1[0])
It'll show:Apple
Now, we can add another index like:print(list1[0][0])
And that'll show A
8.4m questions
11.1m answers