I want to run a script, which basicly shows things like:

Installing XXX...               [DONE]

Now, at the moment, I use print to print the whole line AFTER the function has succeeded. However, I now want it to print "Installing xxx..." first, and AFTER the function has run, to add the "DONE" tag; but on the same line.

Any ideas?

link|improve this question

33% accept rate
feedback

3 Answers

You can use the print to do this without importing sys.

def install_xxx():
   print("Installing XXX...      "),

install_xxx()
print "[DONE]"

The comma on the end of the print line prevents print from issuing a new line.

link|improve this answer
feedback

Use sys.stdout.write('Installing XXX... ') and sys.stdout.write('Done'). In this way, you have to add the new line by hand with "\n" if you want to recreate the print functionality. I think that it might be unnecesary to use curses just for this.

link|improve this answer
Thanks! This works fine. – user697108 Apr 8 '11 at 16:50
2  
Great! Accept my answer as solution, then :) – ferostar Apr 8 '11 at 16:51
feedback

sys.stdout.write will print without return carriage

import sys
sys.stdout.write("installing xxx")
sys.stdout.write(".")

http://en.wikibooks.org/wiki/Python_Programming/Input_and_output#printing_without_commas_or_newlines

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.