Jupyter notebook如何打印多个结果
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity='all'
InteractiveShell.ast_node_interactivity='all',重要参数可从下面选项选择:
ast_node_interactivity¶
‘all’, ‘last’, ‘last_expr’ or ‘none’, ‘last_expr_or_assign’ specifying which nodes should be run interactively (displaying output from expressions).
标签:node,last,ast,InteractiveShell,打印,notebook,Jupyter
From: https://www.cnblogs.com/xinkevinzhang/p/17032086.html