- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
这篇文章是编辑和提交审查2天前。
Improve this question
我有一个名为"Content"的列,其中包含20行文本数据。我已经获取了Content列并将其保存在一个名为S的变量中!
我已经使用for循环将句子拆分为单词,如下所示
for words in S1:
data = words.split(' ')
print(data)
但是当我在新行中打印print(data)时,它只打印最后一行。什么是正确的公式来打印所有行并保存在一个变量中?以后我可以用它来创建二元组单词
1条答案
按热度按时间6g8kf2rb1#
这是jupyter notebook上的一个常见问题,默认情况下,您不能在一个单元格中打印多次。要打印它,您需要在单独的单元格中写入这些内容,或导入InteractiveShell并设置ast_node_interactivity =“all”