1. 部分快捷键
2. 如何解决jupyter notebook 画图不显示
其实出现在个问题很简单,只需要在你的程序中加一行代码就行了:
%matplotlib inline
而%matplotlib具体作用是当你调用matplotlib.pyplot的绘图函数plot()进行绘图的时候,或者生成一个figure画布的时候,可以直接在你的python console里面生成图像。
3. jupyter报错: super(type, obj): obj must be an instance or subtype of type.
一种可能发生此错误的方式是在Jupyter notebook中重新加载带有该类的模块。简单的解决方案是重新启动内核。
参考:
4. NameError: name ‘exit’ is not defined
参考: