Is it possible to manipulate lines of text that have already been printed to the console?
For example,
import time for k in range(1,100): print(
What you need are ANSI Command Codes. http://en.wikipedia.org/wiki/ANSI_escape_code#CSI_codes You also need code to activate ANSI Command Codes. I would use Colorama. https://pypi.python.org/pypi/colorama
OR
Use curses (Python 3.4+) module.
curses