Created
March 19, 2021 01:47
-
-
Save ultramookie/8201a4d4d63df95aa9599dc21776d6e1 to your computer and use it in GitHub Desktop.
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
#!/bin/env python3 | |
import time | |
last=0 | |
current=1 | |
added=0 | |
print(last) | |
while(True): | |
added = last + current | |
last = current | |
current = added | |
print(current) | |
time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment