I'm wondering is that possible to clean a specific thing on command shell run by a Python script?
E.g a script contains:
print ("Hello world")
When I double click on this script, cmd will pop up and I'll see Hello world
on command line. Now I'm wondering, is that possible to clean Hello World
from shell and write something else on there while cmd is running? Like:
print ("Hello world")
time.sleep(1)
# a module replace New Text with Hello world
print("New Text")