您的位置首页生活百科 倒计时代码怎么写? Simone 发布于 2024-06-09 00:29:22 526 阅读 倒计时代码怎么写?的有关信息介绍如下:#python 倒计时代码import timecount = 0min = 10 #倒计时10个数while (count < min): time.sleep(1)#倒计时休眠时间1秒。 print("\r%s" % str(min - count).center(20,'-'), end="") # 总长度20,字符居中,其余部分用'-'填空 count += 1