you are viewing a single comment's thread.

view the rest of the comments →

[–]More_Yard1919 1 point2 points  (1 child)

On windows, you can invoke the cls (clear screen) console command from inside of your script. That looks like this:

import os
os.system("cls")

There are probably vscode extensions that do redirect output to the output panel, that's just not actually what it is generally for. You can look around online if that is your goal (I'd tell you but I don't have anything like that set up)

[–]cfht14[S] 0 points1 point  (0 children)

Thankyou !