我的代码有问题。我有一个嵌套列表,其中包含来自一个句子的一串单词,每个句子都在一个列表中。现在我的问题是如何通过不重复上一句来逐句阅读这些句子。with open('test','r') as f: test_iterate = test.read()sample = [['This', 'is', 'a', 'sample','sentence'],['Sample','sentence','it','is']]for words in test_iterate: print (words)现在我不知道该怎么办。我想要的输出:This is a sample sentence123ABCSample sentence it is123ABC测试文件内部:123ABC
添加回答
举报
0/150
提交
取消