Created
May 22, 2013 03:25
-
-
Save rdhyee/5625043 to your computer and use it in GitHub Desktop.
calculating triangular numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import islice | |
def triangular(): | |
n = 1 | |
i = 1 | |
while True: | |
yield n | |
i +=1 | |
n += i | |
# <codecell> | |
for i, n in enumerate(islice(triangular(), 10)): | |
print i+1, n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment