https://volderette.de/jupyter-notebook-tip-multiple-outputs/
Jupyter Notebook如果想要多个输出,
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
或者在ipython_config中修改:
c.InteractiveShell.ast_node_interactivity = ‘all’