hack-tools-en
hack-tools-en copied to clipboard
Recommendation
You could use something like:
os.system("clear" if os.name != "NT" else "cls")
instead of:
os.system("clear")
os.system("cls")
I like the ASCII-GUI you made 👍
I agree, although I would take an approach such as:
def clear():
if os.name == "NT"
os.system("cls")
else:
os.system("clear")
clear()