My code: text = [['Name', 'Surname', '2009']]
What I tried to do: text[1];
I want so that the 'Surname' would print out, but I keep getting - IndexError: list index out of range.
This is a nested list.
text = [['Name', 'Surname', '2009']]
text[0] = ['Name', 'Surname', '2009']
text[0][1] = 'Surname'