摘要: import time def progress(percent): if percent > 1: percent = 1 res = int(50 * percent) * '#'print("\r[%-50s] %d%%" % (res, int(100 * percent)), end='' 阅读全文
posted @ 2020-06-04 21:29 予之路 阅读(183) 评论(0) 推荐(0) 编辑