Skip to content

Instantly share code, notes, and snippets.

@ultramookie
Created March 19, 2021 01:47
Show Gist options
  • Save ultramookie/8201a4d4d63df95aa9599dc21776d6e1 to your computer and use it in GitHub Desktop.
Save ultramookie/8201a4d4d63df95aa9599dc21776d6e1 to your computer and use it in GitHub Desktop.
#!/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