I know it is possible to consistently rewrite the last line displayed in the terminal with "\r", but I am having trouble figuring out if there is a way to go back and edit previous lines printed in the console.
What I would like to do is reprint multiple lines for a text-based RPG, however, a friend was also wondering about this for an application which had one line dedicated to a progress bar, and another describing the download.
i.e. the console would print:
Moving file: NameOfFile.txt   Total Progress: [########              ] 40%   and then update appropriately (to both lines) as the program was running.
You cannot split a statement into multiple lines in Python by pressing Enter . Instead, use the backslash ( \ ) to indicate that a statement is continued on the next line. In the revised version of the script, a blank space and an underscore indicate that the statement that was started on line 1 is continued on line 2.
On Unix, use the curses module.
On Windows, there are several options:
Simple example using curses (I am a total curses n00b):
import curses import time  def report_progress(filename, progress):     """progress: 0-10"""     stdscr.addstr(0, 0, "Moving file: {0}".format(filename))     stdscr.addstr(1, 0, "Total progress: [{1:10}] {0}%".format(progress * 10, "#" * progress))     stdscr.refresh()  if __name__ == "__main__":     stdscr = curses.initscr()     curses.noecho()     curses.cbreak()      try:         for i in range(10):             report_progress("file_{0}.txt".format(i), i+1)             time.sleep(0.5)     finally:         curses.echo()         curses.nocbreak()         curses.endwin() 
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With