I keep seeing ways to clear the shell while running a script, however is there a way to clear the screen while running a script in the CMD? My current method works like this:
clear.py
import title
def clear():
print('\n' * 25)
title.title()
game.py
from engine import clear
clear.clear()
print(Fore.CYAN + Style.BRIGHT + "--------------------------------")
However this method isn't really reliable as some cmd sizes are different on all computers, nor have I tried it on OSx.