##// END OF EJS Templates
s/prompt_number/execution_count in nbformat 4
s/prompt_number/execution_count in nbformat 4

File last commit:

r18587:1e136a8b
r18587:1e136a8b
Show More
Clear Output.ipynb
37 lines | 588 B | text/plain | TextLexer
In [1]:
from IPython.display import clear_output
In [2]:
for i in range(10):
    clear_output()
    print(i)
9