InteractiveShell.ast_node_intera
2020-09-22 本文已影响0人
陶笛微凉
在用JupyterNotebook的时候,发现python代码里有这样一行:
InteractiveShell.ast_node_interactivity = "all"
对应的导入的包为:
from IPython.core.interactiveshell import InteractiveShell
查了下该句的作用:
jupyter notebook的每个cell只会显示最后一个输出结果,除非用print。例如:
image.png
添加了InteractiveShell.ast_node_interactivity = "all"
则会显示全部结果,如图所示例: