##// END OF EJS Templates
Start adding tests from runipy
Start adding tests from runipy

File last commit:

r17082:8df1a123
r17082:8df1a123
Show More
Factorials.ipynb
54 lines | 863 B | text/plain | TextLexer
In [1]:
i, j = 1, 1
In [2]:
for m in range(10):
    i, j = j, i + j
    print j
2
3
5
8
13
21
34
55
89
144