Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
480 views
in Technique[技术] by (71.8m points)

newline - python: print using carriage return and comma not working

I need to print over one line in a loop (Python 3.x). Looking around on SO already, I put this line in my code:

print('{0} imported
'.format(tot),)

However, it still prints multiple lines when looped through. I have also tried

sys.stdout.write('{0} imported
'.format(tot))

but this doesn't print anything to the console...

Anyone know what's going on with this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In the first case, some systems will treat as a newline. In the second case, you didn't flush the line. Try this:

sys.stdout.write('{0} imported
'.format(tot))
sys.stdout.flush()

Flushing the line isn't necessary on all systems either, as Levon reminds me -- but it's generally a good idea when using this way.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...