With iPython, is there any way to clear output from all cells? I am looking for a command that can do it in one shot.
I see that clear_out like below can do the cleaning work, but it works for one single cell, not all:
from IPython.display import clear_output
clear_output(wait=True)