##// END OF EJS Templates
make execute preprocessor timeout configurable
make execute preprocessor timeout configurable

File last commit:

r17089:5807c24d
r17094:85f1285b
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