Created
June 5, 2020 20:22
-
-
Save automata/8e64b5f67134f51c4cca9bd564e84e66 to your computer and use it in GitHub Desktop.
Code poem published to http://code-poems.com/ at 2012
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
# Three.py ~ Rising | |
from time import sleep | |
from random import random | |
mom = open(__file__).read() | |
while True: | |
child = open(str(random()) + '.py', 'w') | |
child.write(mom) | |
child.close() | |
sleep(random()*10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment