jupyter notebook 清除output
时间: 2023-11-02 08:06:14 浏览: 123
jupyter notebook清除输出方式
在 Jupyter Notebook 中,我们可以使用 clear_output() 函数来清除输出。这个函数可以清除掉当前单元格的输出,或者清除掉整个 Notebook 的输出。如果你想要清除整个 Notebook 的输出,可以在菜单栏中选择 Kernel -> Restart & Clear Output。如果你只想清除当前单元格的输出,可以使用以下代码:
from IPython.display import clear_output
clear_output()
此外,如果你想要在代码中使用 clear_output() 函数,你需要先导入它。你可以使用以下代码导入 clear_output() 函数:
from IPython.display import clear_output
阅读全文