Thread: cyberia
View Single Post
 
Old May 31, 2017, 10:59 AM
bearguardian's Avatar
bearguardian bearguardian is offline
Poohbah
 
Member Since: Jan 2017
Location: arcturus
Posts: 1,243
Outputs the infinite loop of up and down tetractys. It looks simple but it was a real struggle finding all the right methods and ingredients:

https://wiki2.org/en/Tetractys

Code:
#!/usr/bin/python
import time
while True:
 print "   ."
 time.sleep(1)
 print "  . ."
 time.sleep(1)
 print " . . ."
 time.sleep(1)
 print ". . . ."
 time.sleep(1)
 print " . . ."
 time.sleep(1)
 print "  . ."
 time.sleep(1)
 print "   ."
 time.sleep(1)
__________________
that weird hidden space:
http://namshub.netii.net/