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'
- 上一篇:python列表去重的二种方法
- 下一篇:python实现排序算法
精彩图集
精彩文章