NeteaseMusicLyricDownloader/modules/utils/clear_screen.py
1826013250 94149eabea COLORFUL UPDATE
Make output more and more and more colorful!

Change file structure and README.md
2023-05-07 01:59:03 +08:00

19 lines
397 B
Python

"""用来清空命令行的信息,自动判别系统"""
import os
def clear():
name = os.name
if name == "nt":
os.system("cls")
elif name == "posix":
os.system("clear")
else:
os.system("clear")
def cls_stay(self, custom=""):
"""保留版本号清除屏幕"""
clear()
print(f"[NeteaseMusicLyricDownloader] {self.version}")
print(custom)