91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在python中利用tkinter制作一個倒計時工具

發布時間:2021-04-29 16:11:14 來源:億速云 閱讀:825 作者:Leah 欄目:開發技術

怎么在python中利用tkinter制作一個倒計時工具?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

python的五大特點是什么

python的五大特點:1.簡單易學,開發程序時,專注的是解決問題,而不是搞明白語言本身。2.面向對象,與其他主要的語言如C++和Java相比, Python以一種非常強大又簡單的方式實現面向對象編程。3.可移植性,Python程序無需修改就可以在各種平臺上運行。4.解釋性,Python語言寫的程序不需要編譯成二進制代碼,可以直接從源代碼運行程序。5.開源,Python是 FLOSS(自由/開放源碼軟件)之一。

# 設置頁面數據
tk_obj = Tk()
tk_obj.geometry('400x280')
tk_obj.resizable(0, 0)
tk_obj.config(bg='white')
tk_obj.title('倒計時應用')
Label(tk_obj, text='下班倒計時', font='宋體 20 bold', bg='white').pack()
# 設置當前時間
Label(tk_obj, font='宋體 15 bold', text='當前時間:', bg='white').place(x=50, y=60)
curr_time = Label(tk_obj, font='宋體 15', text='', fg='gray25', bg='white')
curr_time.place(x=160, y=60)
refresh_current_time()
# 設置下班時間
Label(tk_obj, font='宋體 15 bold', text='下班時間:', bg='white').place(x=50, y=110)
# 下班時間-小時
work_hour = StringVar()
Entry(tk_obj, textvariable=work_hour, width=2, font='宋體 12').place(x=160, y=115)
work_hour.set('18')
# 下班時間-分鐘
work_minute = StringVar()
Entry(tk_obj, textvariable=work_minute, width=2, font='宋體 12').place(x=185, y=115)
work_minute.set('00')
# 下班時間-秒數
work_second = StringVar()
Entry(tk_obj, textvariable=work_second, width=2, font='宋體 12').place(x=210, y=115)
work_second.set('00')
# 設置剩余時間
Label(tk_obj, font='宋體 15 bold', text='剩余時間:', bg='white').place(x=50, y=160)
down_label = Label(tk_obj, font='宋體 23', text='', fg='gray25', bg='white')
down_label.place(x=160, y=155)
down_label.config(text='00時00分00秒')
# 開始計時按鈕
Button(tk_obj, text='START', bd='5', command=refresh_down_time, bg='green', font='宋體 10 bold').place(x=150, y=220)
tk_obj.mainloop()

定時刷新剩余時間

通過獲取設置的下班時間,對比當前時間的時間差,從而得到剩余時間,再用while每秒循環處理剩余時間,并實時刷新到界面上,直至剩余時間為0程序才會結束,甚至操作電腦自動關機的功能。

def refresh_down_time():
    """刷新倒計時時間"""
    # 當前時間戳
    now_time = int(time.time())
    # 下班時間時分秒數據過濾
    work_hour_val = int(work_hour.get())
    if work_hour_val > 23:
        down_label.config(text='小時的區間為(00-23)')
        return
    work_minute_val = int(work_minute.get())
    if work_minute_val > 59:
        down_label.config(text='分鐘的區間為(00-59)')
        return
    work_second_val = int(work_second.get())
    if work_second_val > 59:
        down_label.config(text='秒數的區間為(00-59)')
        return
    # 下班時間轉為時間戳
    work_date = str(work_hour_val) + ':' + str(work_minute_val) + ':' + str(work_second_val)
    work_str_time = time.strftime('%Y-%m-%d ') + work_date
    time_array = time.strptime(work_str_time, "%Y-%m-%d %H:%M:%S")
    work_time = time.mktime(time_array)
    if now_time > work_time:
        down_label.config(text='已過下班時間')
        return
    # 距離下班時間剩余秒數
    diff_time = int(work_time - now_time)
    while diff_time > -1:
        # 獲取倒計時-時分秒
        down_minute = diff_time // 60
        down_second = diff_time % 60
        down_hour = 0
        if down_minute > 60:
            down_hour = down_minute // 60
            down_minute = down_minute % 60
        # 刷新倒計時時間
        down_time = str(down_hour).zfill(2) + '時' + str(down_minute).zfill(2) + '分' + str(down_second).zfill(2) + '秒'
        down_label.config(text=down_time)
        tk_obj.update()
        time.sleep(1)
        if diff_time == 0:
            # 倒計時結束
            down_label.config(text='已到下班時間')
            # 自動關機,定時一分鐘關機,可以取消
            # down_label.config(text='下一分鐘將自動關機')
            # os.system('shutdown -s -f -t 60')
            break
        diff_time -= 1

完整代碼

為了方便大家測試和順利摸魚,我把完整的倒計時程序也貼出來,大家有什么問題也可以及時反饋,想要了解更多的可以去交友網站github.com/gxcuizy上面找我哦

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
距離下班時間倒計時
author: gxcuizy
date: 2021-04-27
"""

from tkinter import *
import time
import os


def refresh_current_time():
    """刷新當前時間"""
    clock_time = time.strftime('%Y-%m-%d %H:%M:%S')
    curr_time.config(text=clock_time)
    curr_time.after(1000, refresh_current_time)


def refresh_down_time():
    """刷新倒計時時間"""
    # 當前時間戳
    now_time = int(time.time())
    # 下班時間時分秒數據過濾
    work_hour_val = int(work_hour.get())
    if work_hour_val > 23:
        down_label.config(text='小時的區間為(00-23)')
        return
    work_minute_val = int(work_minute.get())
    if work_minute_val > 59:
        down_label.config(text='分鐘的區間為(00-59)')
        return
    work_second_val = int(work_second.get())
    if work_second_val > 59:
        down_label.config(text='秒數的區間為(00-59)')
        return
    # 下班時間轉為時間戳
    work_date = str(work_hour_val) + ':' + str(work_minute_val) + ':' + str(work_second_val)
    work_str_time = time.strftime('%Y-%m-%d ') + work_date
    time_array = time.strptime(work_str_time, "%Y-%m-%d %H:%M:%S")
    work_time = time.mktime(time_array)
    if now_time > work_time:
        down_label.config(text='已過下班時間')
        return
    # 距離下班時間剩余秒數
    diff_time = int(work_time - now_time)
    while diff_time > -1:
        # 獲取倒計時-時分秒
        down_minute = diff_time // 60
        down_second = diff_time % 60
        down_hour = 0
        if down_minute > 60:
            down_hour = down_minute // 60
            down_minute = down_minute % 60
        # 刷新倒計時時間
        down_time = str(down_hour).zfill(2) + '時' + str(down_minute).zfill(2) + '分' + str(down_second).zfill(2) + '秒'
        down_label.config(text=down_time)
        tk_obj.update()
        time.sleep(1)
        if diff_time == 0:
            # 倒計時結束
            down_label.config(text='已到下班時間')
            # 自動關機,定時一分鐘關機,可以取消
            # down_label.config(text='下一分鐘將自動關機')
            # os.system('shutdown -s -f -t 60')
            break
        diff_time -= 1


# 程序主入口
if __name__ == "__main__":
    # 設置頁面數據
    tk_obj = Tk()
    tk_obj.geometry('400x280')
    tk_obj.resizable(0, 0)
    tk_obj.config(bg='white')
    tk_obj.title('倒計時應用')
    Label(tk_obj, text='下班倒計時', font='宋體 20 bold', bg='white').pack()
    # 設置當前時間
    Label(tk_obj, font='宋體 15 bold', text='當前時間:', bg='white').place(x=50, y=60)
    curr_time = Label(tk_obj, font='宋體 15', text='', fg='gray25', bg='white')
    curr_time.place(x=160, y=60)
    refresh_current_time()
    # 設置下班時間
    Label(tk_obj, font='宋體 15 bold', text='下班時間:', bg='white').place(x=50, y=110)
    # 下班時間-小時
    work_hour = StringVar()
    Entry(tk_obj, textvariable=work_hour, width=2, font='宋體 12').place(x=160, y=115)
    work_hour.set('18')
    # 下班時間-分鐘
    work_minute = StringVar()
    Entry(tk_obj, textvariable=work_minute, width=2, font='宋體 12').place(x=185, y=115)
    work_minute.set('00')
    # 下班時間-秒數
    work_second = StringVar()
    Entry(tk_obj, textvariable=work_second, width=2, font='宋體 12').place(x=210, y=115)
    work_second.set('00')
    # 設置剩余時間
    Label(tk_obj, font='宋體 15 bold', text='剩余時間:', bg='white').place(x=50, y=160)
    down_label = Label(tk_obj, font='宋體 23', text='', fg='gray25', bg='white')
    down_label.place(x=160, y=155)
    down_label.config(text='00時00分00秒')
    # 開始計時按鈕
    Button(tk_obj, text='START', bd='5', command=refresh_down_time, bg='green', font='宋體 10 bold').place(x=150, y=220)
    tk_obj.mainloop()

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙陵县| 武平县| 安庆市| 大连市| 老河口市| 汉中市| 邵阳县| 东港市| 手游| 罗源县| 富川| 平江县| 林芝县| 鹤壁市| 墨竹工卡县| 磐安县| 沙洋县| 麻栗坡县| 桦南县| 湘乡市| 云南省| 龙江县| 乐安县| 封丘县| 绥芬河市| 诸暨市| 崇仁县| 根河市| 长春市| 盘锦市| 凤翔县| 铜梁县| 浠水县| 方山县| 三亚市| 扎赉特旗| 汉阴县| 桓台县| 龙胜| 武汉市| 思茅市|