首页 > 编程 > Python > 正文

python实现倒计时的示例

2019-11-25 18:31:28
字体:
来源:转载
供稿:网友

复制代码 代码如下:

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' 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表