jupyter notebook显示变量
时间: 2023-11-05 13:06:11 浏览: 340
Jupyter Notebook 实现正常显示中文和负号
在Jupyter Notebook中,如果你想要显示多个变量的值,可以在Notebook的开头cell中添加以下代码:from IPython.core.interactiveshell import InteractiveShell InteractiveShell.ast_node_interactivity = "all"。这样就可以实现多行输出了。另外,你也可以通过安装插件Variable inspector来显示变量的值。安装插件的方法是打开Jupyter Notebook后点击Nbextensions,然后选择需要的插件,Variable inspector是可以显示变量的插件,把它勾选即可。
阅读全文