##// END OF EJS Templates
Merge pull request #6828 from takluyver/terminal-list...
Merge pull request #6828 from takluyver/terminal-list Add terminals tab to the dashboard

File last commit:

r17101:945ec056
r18615:96791286 merge
Show More
Clear Output.ipynb
45 lines | 750 B | text/plain | TextLexer
In [1]:
from IPython.display import clear_output
In [2]:
for i in range(10):
    clear_output()
    print(i)
9