python 倒计时运行程序_自己用python写一个倒计时软件 – Huiwei的日志 – 易博客…

ort time

import tkMessageBox

class App:

def __init__(self,master):

frame = Frame(master)

frame.pack()

self.entryWidget = Entry(frame)

self.entryWidget[“width”] = 15

self.entryWidget.pack(side=LEFT)

self.hi_there = Button(frame, text=”Start”, command=self.start)

self.hi_there.pack(side=LEFT)

self.button = Button(frame, text=”QUIT”, fg=”red”, command=frame.quit)

self.button.pack(side=LEFT)

def start(self):

text = self.entryWidget.get().strip()

if text != “”:

num = int(text)

self.countDown(num)

def countDown(self,seconds):

lbl1.config(bg=’yellow’)

lbl1.config(height=3, font=(‘times’, 20, ‘bold’))

for k in range(seconds, 0, -1):

lbl1[“text”] = k

root.update()

time.sleep(1)

lbl1.config(bg=’red’)

lbl1.config(fg=’white’)

lbl1[“text”] = “Time up!”

tkMessageBox.showinfo(“Time up!”,”Time up!”)

def GetSource():

get_window = Tkinter.Toplevel(root)

get_window.title(‘Source File)

Tkinter.Entry(get_window, width=30,

textvariable=source).pack()

Tkinter.Button(get_window, text=”Change”,

command=lambda: update_specs()).pack()

root = Tk()

root.title(“Countdown”)

lbl1 = Label()

lbl1.pack(fill=BOTH, expand=1)

app = App(root)

root.mainloop()

文章知识点与官方知识档案匹配,可进一步学习相关知识Python入门技能树首页概览210493 人正在系统学习中 相关资源:PPT倒计时软件FlyClock(PPT倒计时软件)v1.3_ppt倒计时代码-其它…

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2020年11月25日
下一篇 2020年11月25日

相关推荐