我希望能够将一段文字分成句子并将这些句子分成单词列表。关键是我可以独立访问每个句子,并从每个句子访问所有单词。
我在这里寻找什么样的代码的例子是:
listA = ["h","e","l","l","o"]
listB = ["w","o","r","l","d"]
superList = [listA,listB]
print(superList[0[1]])
我创建了3个列表:listA,listB和superList。 superList包含两个列表。我想访问第一个列表的第二个字母。显然,这种在打印命令中访问数据的尝试不起作用。
我该怎么做?
答案 0 :(得分:1)
您可以通过这种方式访问第二个字母:
print(superList[0][1])
e