python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python倒计时

python实现倒计时的示例

作者:

这篇文章主要介绍了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' 

您可能感兴趣的文章:
阅读全文