first (and probably last) commit. this should probably be a gist insteadd

main
sidekek 5 years ago
parent 64fc07d08f
commit 39200e80c5
  1. 12
      rollin.py

@ -0,0 +1,12 @@
import os
import time
tags = ["the", "agile", "rust-colored", "fox", "leaped", "above", "the", "moon"]
for o in range(0, len(tags)):
tag = tags[o]
for i in range(0, (len(tag) + 1) * 2):
os.system("clear")
if (i > len(tag) + 1):
print(tag[:(((len(tag) + 1) * 2) - i)])
else:
print(tag[:i])
time.sleep(.1)
Loading…
Cancel
Save