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