我可以恢复在Jupyter笔记本中误删除的python函数吗?

时间:2019-11-12 14:54:17

标签: python python-3.x function matplotlib jupyter-notebook

我将matplotlib.pyplot导入为plt,然后错误地在函数中用函数matplotlib.pyplot.xticks函数名(即plt.xticks = ...而不是plt.xticks(...))定义了一个变量Jupyter笔记本。然后,我尝试使用del plt.xticks撤消定义,并删除了变量和函数。我尝试重新导入matplotlib,但仍然没有plt.xticks:

plt.xticks

AttributeError: module 'matplotlib.pyplot' has no attribute 'xticks'

在其他笔记本中,即使重新导入了库,该命令仍然有效。在这个特定的笔记本中,我可以通过import matplotlib解决该问题。还有另一种方法吗?

1 个答案:

答案 0 :(得分:1)

我曾经做过同样的事情,重启内核就可以了。