国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

python實現(xiàn)簡單倒計時功能

瀏覽:2日期:2022-06-21 18:18:35

使用python實現(xiàn)簡單倒計時exe,供大家參考,具體內(nèi)容如下

使用tkinter制作界面實現(xiàn)倒計時功能。

python實現(xiàn)簡單倒計時功能

使用time.sleep(1)實現(xiàn) 秒級 倒計時 使用線程避免界面卡死 在線程的循環(huán)中檢測全局標志位,保證計時線程的重置、以及退出 使用pyinstaller -F file.py -w 生成exe文件,-w表示隱藏控制臺,-F表示生成單文件

代碼如下:

#!/usr/bin/python3.8# -*- coding: utf-8 -*-# @Time : 2021/4/19 14:09# @Author : dongdong# @File : CountdownGUI.py# @Software: PyCharmfrom tkinter import *import timeimport threadingdef cyclethread(): global counttime global restartflag global runflag restartflag=False if (timestr.get().isdigit()):counttime = int(timestr.get()) * 60 else:runflag=Falsereturn; while (1):if(restartflag): counttime = int(timestr.get()) * 60 restartflag=Falseif(exitflag): sys.exit()counttime=counttime-1v=’nleft time:’+str(counttime//60)+’ :’+str(counttime%60)textshow.set(v)root.update()if (counttime <= 0): runflag = False returntime.sleep(1)def startCount(): global restartflag global runflag restartflag=True if( not runflag):th=threading.Thread(target=cyclethread)th.setDaemon(True)th.start()runflag = Truedef exitfun(): global exitflag exitflag=True sys.exit()restartflag=Falseexitflag=Falsecounttime=Nonerunflag=Falseroot=Tk()root.geometry(’250x120’)root.title(’TimeCounter’)timestr = StringVar(value='30')textshow=StringVar(value=’nCountDown:30min ’)text0=Label(root,text=’Input time(min):’).grid(row=0,column=0,columnspan=3)entext=Entry(root,textvariable=timestr).grid(row=0,column=3,columnspan=1)# bnframe=ttk.Frame(root).grid(row=1,column=0,columnspan=4)stbn=Button(root,text=’Start’,command=startCount).grid(row=1,column=2,columnspan=1)enbn=Button(root,text=’Exit’,command=exitfun).grid(row=1,column=3,columnspan=1)text=Label(root,textvariable=textshow).grid(row=2,column=0,columnspan=4)root.mainloop()

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 泽库县| 西贡区| 大悟县| 托克托县| 彰化市| 措美县| 安图县| 天台县| 华蓥市| 三穗县| 东乌| 彭州市| 罗平县| 余干县| 内乡县| 南投市| 文昌市| 嘉黎县| 诏安县| 阿坝| 开封县| 开远市| 锦州市| 岳西县| 田林县| 弥勒县| 昌乐县| 邓州市| 衡山县| 崇义县| 蓬溪县| 镇安县| 榆中县| 眉山市| 渭南市| 乐陵市| 蓝田县| 舒城县| 古丈县| 读书| 恩平市|