Last active
November 24, 2019 14:29
-
-
Save nawazm92/f5b952ccb651034dee8d701898184617 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
n1, n2 = 0, 1 | |
count = 0 | |
while count < 25: | |
print(n1) | |
nt = n1 + n2 | |
n1 = n2 | |
n2 = nt | |
count += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment