python实现倒计时的示例

脚本专栏 发布日期:2025/1/13 浏览次数:1

正在浏览:python实现倒计时的示例

复制代码 代码如下:
import time
count = 0 
a = input('time:') 
b = a * 60 
while (count < b):
 ncount = b - count 
 print ncount 
 time.sleep(1)
 count += 1 
print 'done'