I\'m doing a progressbar for my uploading script and therefor i want to print a row of multiple \'#\' but i can\'t get it to work. When i tell Python to not add newline it d
You probably need to flush the output buffer after each print
invocation. See How to flush output of Python print?
You can always use the strip()
function.
I tried your code in the IDLE for 2.5. So I had to use print format as - print '#',
Here is what I get when I execute it - The system prints '#' symbol every second. At the end of the loop I get the prompt back on the IDLE. So it seems to me that it is doing what you expect it to do.
Which version you are specifically using? Sorry I do not have version 3. So I cannot test it there.