jupyter notebook restart and clear output shortcut code example
Example: jupyter clear cell output programmatically
from IPython.display import clear_output
for i in range(10):
clear_output(wait=True)
print("Hello World!")
from IPython.display import clear_output
for i in range(10):
clear_output(wait=True)
print("Hello World!")