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

File last commit:

r17089:5807c24d
r17094:85f1285b
Show More
Factorials.ipynb
35 lines | 551 B | text/plain | TextLexer
In [ ]:
i, j = 1, 1
In [ ]:
for m in range(10):
    i, j = j, i + j
    print(j)