Possible Duplicate:
How to create a spinning command line cursor using python?
python 3 IDLE progressbar/loadingbar
I want to print the output as below:
Percentage: 10%
and only the percentage keeps changing to 20, 30, 40 so on in the same position. Overwriting 10%. I saw many of the posts on stackoverflow. But none of them work right in Python 3.
I tried using \r, \c and even \b but does not work from within print() or sys.stdout()
I am trying this using IDLE and running the program from Python Shell by pressing F5. The environment is Windows.
Please help. Thanks