##// END OF EJS Templates
Merge pull request #6828 from takluyver/terminal-list...
Merge pull request #6828 from takluyver/terminal-list Add terminals tab to the dashboard

File last commit:

r17101:945ec056
r18615:96791286 merge
Show More
Factorials.ipynb
54 lines | 864 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