Skip to content

Instantly share code, notes, and snippets.

@Zzz9194
Created July 12, 2020 15:09
Show Gist options
  • Save Zzz9194/e007590286700c41fe122ff5e07fe766 to your computer and use it in GitHub Desktop.
Save Zzz9194/e007590286700c41fe122ff5e07fe766 to your computer and use it in GitHub Desktop.
import termcolor
import random
import os
import time
space_stuffs = {
"star": "✦",
"backtick": "`",
"dot": ".",
"comma": ",",
"specdot": "゚"
}
os.system('clear')
for _ in range(1, 100):
for c in range(1, 36):
rand_space = " ".center(random.randint(1,200), " ")
if c in [18]:
rand_length = " ".ljust(random.randint(1,100),'=')
print(rand_length + "💩")
else:
rand_thing = space_stuffs[random.choice(list(space_stuffs.keys()))]
print(rand_space + rand_thing)
time.sleep(0.7)
os.system('clear')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment