当前位置:Gxlcms > Python > python实现倒计时的示例

python实现倒计时的示例

时间:2021-07-01 10:21:17 帮助过:100人阅读

代码如下:


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'

人气教程排行