如何打印出具体索引?

How do I print out the specific index?

我的代码:text = [['Name', 'Surname', '2009']]

我尝试做的事情:文本[1];

我想要 'Surname' 打印出来,但我不断收到 - IndexError: list index out of range.

这是一个嵌套列表。

text = [['Name', 'Surname', '2009']]

text[0] = ['Name', 'Surname', '2009']

text[0][1] = 'Surname'