2017年5月10日 星期三

[ Python 常見問題 ] How do I write output in same place on the console?

Source From Here
Question
I want to show the progress of the download, but I want it to stay in the same position, such as:
Downloading File FooFile.txt [47%]

How should I go about doing this?

How-To
You can use the Carriage Return "\r":
  1. sys.stdout.write("Download progress: %d%%   \r" % (progress) )  
  2. sys.stdout.flush()  


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...