废话不多说,直接上代码
import tkinter
import datetime
from tkinter import *
from tkinter.ttk import *
from tkinter import messagebox
#获取今天的日期
today = datetime.date.today()
#判断输入的日期是否合法
def is_date(date):
try:
datetime.datetime.strptime(date,"%Y-%m-%d")
return True
except:
return False
#计算两个日期的差的主函数
def riqichajisuan():
riqi1=u1.get()
riqi2=p1.get()
if is_date(riqi1) and is_date(riqi2):
date1 = datetime.datetime.strptime(riqi1,"%Y-%m-%d")
date2 = datetime.datetime.strptime(riqi2,"%Y-%m-%d")
date_difference=date2-date1
result=date_difference.days
b=messagebox.showinfo('计算结果','这两个日期之间相差:'+ str(result) + '天')
elif riqi1 == '' and riqi2 == '':
sjk=messagebox.showerror('错误','两个日期均未输入或输入格式有误\n请重新输入正确格式的日期!')
elif riqi1 == '' :
c=messagebox.showerror('错误','日期一未输入或输入格式有误\n请重新输入正确格式的日期!')
elif riqi2 == '' :
cqw=messagebox.showerror('错误','日期二未输入或输入格式有误\n请重新输入正确格式的日期!')
else:
a=messagebox.showerror('错误','输入的日期格式有误\n请重新输入正确格式的日期!')
#计算两个日期的差的主窗体
def riqicha():
def tuichu():
top1.destroy()
root2.state('normal')
root2.state('icon')
top1=Toplevel()
top1.title('计算日期差')
top1.resizable(width=False, height=False)
width = 200
heigh = 140
screenwidth = top1.winfo_screenwidth()
screenheight = top1.winfo_screenheight()
top1.geometry(&#