30秒倒计时

Posted zmzzm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了30秒倒计时相关的知识,希望对你有一定的参考价值。

 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秒倒计时的主要内容,如果未能解决你的问题,请参考以下文章

每天倒计时代码

20分求编写的电脑开机,自动弹出倒计时关机的代码!

颤振计时器仅更新秒小部件

30秒倒计时

ASP网页上的倒计时代码,要求可以防刷新的

按秒倒数计时器