当前位置:主页 > 软件编程 > Python代码 >

python实现倒计时的示例

时间:2020-10-07 14:28:47 | 栏目: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' 

您可能感兴趣的文章:

相关文章