Jupyter Notebook查看变量值的方法

在Jupyter Notebook运行Python程序时,若能实时的显示所定义变量的情况将给编程带来极大的便利!而在Jupyter Notebook实现实时显示变量是通过Nbextensions插件来实现的:

Nbextensions插件安装

在Anaconda Prompt中输入如下指令:

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

2 选择需要的功能

此时打开Jupyter Notebook后点击Nbextensions就可选择需要的插件

Jupyter Notebook查看变量值的方法_第1张图片

可显示变量的插件为:Variable inspector(把它勾选即可)

Jupyter Notebook查看变量值的方法_第2张图片

则在Jupyter Notebook就可查看变量:

在编辑程序页面,点击如图所示按钮即可:

显示效果:

Jupyter Notebook查看变量值的方法_第3张图片

你可能感兴趣的:(人工智能,Jupyter,notebook,Document,交互式编辑器,Jupyter,Note)