pandas For循环使用[closed]只打印最后一行

x4shl7ld  于 2023-01-11  发布在  其他
关注(0)|答案(1)|浏览(146)

编辑问题以包含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)时,它只打印最后一行。什么是正确的公式来打印所有行并保存在一个变量中?以后我可以用它来创建二元组单词

6g8kf2rb

6g8kf2rb1#

这是jupyter notebook上的一个常见问题,默认情况下,您不能在一个单元格中打印多次。要打印它,您需要在单独的单元格中写入这些内容,或导入InteractiveShell并设置ast_node_interactivity =“all”

from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"

相关问题