码迷,mamicode.com
首页 > 其他好文 > 详细

30秒倒计时

时间:2019-12-02 13:13:31      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:counter   main   lob   run   height   int   gif   alt   oba   

 1 from tkinter import *
 2 counter = 30
 3 def run_counter(digit):
 4     def counting():
 5         global counter
 6         counter -= 1
 7         digit.config(text=str(counter))
 8         digit.after(1000,counting)
 9     counting()
10 root = Tk()
11 root.title("30秒倒计时")
12 digit=Label(root,bg="yellow",fg="blue",height=3,width=10,font="Helvetic 20 bold")
13 digit.pack()
14 run_counter(digit)
15 
16 root.mainloop()

技术图片

30秒倒计时

标签:counter   main   lob   run   height   int   gif   alt   oba   

原文地址:https://www.cnblogs.com/zmzzm/p/11969770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!