這篇文章將為大家詳細講解有關(guān)Python怎么制作簡易版小工具之計算天數(shù),小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站專注于烏爾禾企業(yè)網(wǎng)站建設,響應式網(wǎng)站設計,成都做商城網(wǎng)站。烏爾禾網(wǎng)站建設公司,為烏爾禾等地區(qū)提供建站服務。全流程按需策劃設計,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務python主要應用領(lǐng)域有哪些1、云計算,典型應用OpenStack。2、WEB前端開發(fā),眾多大型網(wǎng)站均為Python開發(fā)。3.人工智能應用,基于大數(shù)據(jù)分析和深度學習而發(fā)展出來的人工智能本質(zhì)上已經(jīng)無法離開python。4、系統(tǒng)運維工程項目,自動化運維的標配就是python+Django/flask。5、金融理財分析,量化交易,金融分析。6、大數(shù)據(jù)分析。
需求
給定一個日期,格式如 “2020-2-12”,計算出這個日期是 2020 年的第幾天?
實現(xiàn)思路
使用 tkinter 和 tkinter.ttk 對界面進行布置;
使用 calendar 計算天數(shù);
規(guī)范輸入日期的格式;
對月份,天數(shù)進行邏輯判斷;
輸入錯誤拋出異常提示。
代碼實現(xiàn)
# -*- coding: utf-8 -*- ''' @File: calc_day_v2.py @Time: 2020/02/12 20:33:22 @Author: 大夢三千秋 @Contact: yiluolion@126.com ''' # Put the import lib here from tkinter import * import tkinter.messagebox as messagebox from tkinter import ttk import calendar class MyException(BaseException): '''自定義異常類 ''' def __init__(self, message): self.message = message def calculate(*args): '''計算天數(shù)方法 ''' try: # 用以存儲天數(shù) nums = 0 # 獲取輸入框中的數(shù)據(jù) year, month, day = [int(elem) for elem in date.get().split('-')] # 判斷月份,規(guī)定在 1-12 之間 if 1 <= month <= 12: # 遍歷計算天數(shù) for month_x in range(1, month + 1): # 計算每月的天數(shù) _, month_day = calendar.monthrange(year, month_x) # 遍歷的月份等于當前月份,對天數(shù)進行規(guī)整 if month_x == month: # 文本輸入框給出的天數(shù)不符合,則拋出異常 if day > month_day: raise MyException("信息輸入錯誤,注意天數(shù)!") continue nums += month_day nums += day # 設置值到文本框 days.set(nums) the_year.set(year) else: # 月份超出范圍拋出異常 raise MyException("信息輸入錯誤,注意月份!") except MyException as e: messagebox.showinfo(title="輸入信息錯誤", message=e) except Exception as e: # print(e) messagebox.showinfo(title="輸入信息錯誤", message="輸出格式錯誤,按照 2020-2-12 這樣的格式輸入。注意月份,天數(shù)!") root = Tk() root.title("計算天數(shù)") # 設置框架 mainframe = ttk.Frame(root, padding="3 3 12 12") mainframe.grid(column=0, row=0, sticky=(N, S, E, W)) root.columnconfigure(0, weight=1) root.rowconfigure(0, weight=1) date = StringVar() the_year = StringVar() days = StringVar() # 文本框部件布置 date_entry = ttk.Entry(mainframe, width=10, textvariable=date) date_entry.grid(column=2, row=1, sticky=(W, E)) # 標簽及按鈕的布置 ttk.Label(mainframe, text="例如:2020-2-12").grid(column=5, row=1, sticky=(W, E)) ttk.Label(mainframe, textvariable=days).grid(column=4, row=2, sticky=(W, E)) ttk.Label(mainframe, textvariable=the_year).grid(column=2, row=2, sticky=(W, E)) ttk.Button(mainframe, text="Calculate", command=calculate).grid(column=5, row=3) ttk.Label(mainframe, text="日期:").grid(column=1, row=1, sticky=E) ttk.Label(mainframe, text="這一天是").grid(column=1, row=2, sticky=E) ttk.Label(mainframe, text="年的第").grid(column=3, row=2, sticky=E) ttk.Label(mainframe, text="天").grid(column=5, row=2, sticky=W) # 設置內(nèi)邊距 for child in mainframe.winfo_children(): child.grid_configure(padx=5, pady=5) date_entry.focus() root.bind('', calculate) root.mainloop()
使用效果
正確輸入的效果如下:
未按照格式輸入,錯誤提示效果:
月份輸入錯誤,提示效果如下:
天數(shù)超出當月范圍的錯誤提示效果:
關(guān)于“Python怎么制作簡易版小工具之計算天數(shù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。