码迷,mamicode.com
首页 > 编程语言 > 详细

python3 进度条

时间:2019-05-30 01:11:31      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:flush   import   end   span   sys   pre   nis   print   执行   

# coding:utf-8
import sys
import time

total = 50
for i in range(1, total+1):
    percentage = round(100/total*i/100, 2)
    print(\r + %s%% % (str(int(percentage * 100))) + > * (int(percentage * 100)), end=‘‘)
    sys.stdout.flush()
    time.sleep(0.2)

执行效果:
100%>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Process finished with exit code 0

 

python3 进度条

标签:flush   import   end   span   sys   pre   nis   print   执行   

原文地址:https://www.cnblogs.com/lilyxiaoyy/p/10947173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!