##// END OF EJS Templates
Fix two calls to utils.reject (misplaced parens)
Fix two calls to utils.reject (misplaced parens)

File last commit:

r18590:be819bae
r20855:87602750
Show More
Clear Output.ipynb
38 lines | 582 B | text/plain | TextLexer
In [1]:
from IPython.display import clear_output
In [2]:
for i in range(10):
    clear_output()
    print(i)
9