python实现倒计时的示例
摘要:复制代码代码如下:importtimecount=0a=input('time:')b=a*60while(count
复制代码 代码如下:
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实现排序算法
下一篇:
python列表去重的二种方法