I am essentially building a timer. I have a python script that monitors for an event and then prints out the seconds that have elapsed since that event.
Instead of an ugly stream of numbers printed to the command line, I would like to display only the current elapsed time "in-place"-- so that only one number is visible at any given time.
Is there a simple way to do this?
If possible I'd like to use built-in python modules. I'm on Windows, so simpler the better. (E.g. no X11).