永久實現jupyter notebook多行輸出
阿新 • • 發佈:2021-05-25
1 臨時輸出 新增以下程式碼
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
2 永久輸出,一勞永逸
1 cmd命令列中執行 jupyter notebook --generate-config 生成配置檔案
2 然後去 C:\Users\Administrator.ipython\profile_default 新建一個.py檔案(可以用pycharm直接生成),檔名為:ipython_config.py
3 檔案內容為
c = get_config() c.InteractiveShell.ast_node_interactivity = "all"
4 儲存,關閉檔案。
5 重啟 Jupyter notebook 後,即可直接多行結果輸出。