##// END OF EJS Templates
move mime-bundle data to rich output.data...
move mime-bundle data to rich output.data from top-level output keys

File last commit:

r18589:135227ac
r18589:135227ac
Show More
Factorials.ipynb
48 lines | 699 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