Musicreater/作者的自我装逼.py

30 lines
612 B
Python
Raw Normal View History

2022-06-12 10:22:07 +00:00
2022-06-12 10:38:31 +00:00
from time import sleep
2022-06-12 10:22:07 +00:00
from msctLib.buildIN import author_reader
2022-06-12 10:38:31 +00:00
from os import system
2022-06-12 10:22:07 +00:00
2022-06-12 10:38:31 +00:00
authors = author_reader()
def run(string):
try:
system(string)
except:
return
run('color 70')
for bigname,languages in authors.items():
run('color 02')
for i in bigname:
print(i,end="",flush=True)
sleep(0.1)
run('color 70')
print(' :')
for language,author in languages.items():
line = ' '+language+' > '+author
for i in line:
print(i,end="",flush=True)
sleep(0.05)
print()
input()