mirror of https://github.com/kurisufriend/rolling
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
320 B
12 lines
320 B
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)
|
|
|