1

我正在尝试制作一个用户可以选择日期范围的 tkinter 应用程序。Tkcalendar 库只允许选择 1 天,有没有办法选择多个连续天?

非常感谢你

4

1 回答 1

1

您可以创建两个日历,然后选择两个日期,然后找到这两个日期之间的范围。核心功能是:

def date_range(start,stop): # Start and stop dates for range
    dates = [] # Empty list to return at the end
    diff = (stop-start).days # Get the number of days between
    
    for i in range(diff+1): # Loop through the number of days(+1 to include the intervals too)
        day = first + timedelta(days=i) # Days in between
        dates.append(day) # Add to the list
    
    if dates: # If dates is not an empty list
        return dates # Return it 
    else:
        print('Make sure the end date is later than start date') # Print a warning

现在把事情放在tkinter透视图中,按钮回调不能return做任何事情,所以这应该是这样的:

from tkinter import *
import tkcalendar
from datetime import timedelta

root = Tk()

def date_range(start,stop):
    global dates # If you want to use this outside of functions
     
    dates = []
    diff = (stop-start).days
    for i in range(diff+1):
        day = start + timedelta(days=i)
        dates.append(day)
    if dates:
        print(dates) # Print it, or even make it global to access it outside this
    else:
        print('Make sure the end date is later than start date')

date1 = tkcalendar.DateEntry(root)
date1.pack(padx=10,pady=10)

date2 = tkcalendar.DateEntry(root)
date2.pack(padx=10,pady=10)

Button(root,text='Find range',command=lambda: date_range(date1.get_date(),date2.get_date())).pack() 

root.mainloop()

请记住,列表中充满了日期时间对象,仅列出完整的日期字符串,例如:

dates = [x.strftime('%Y-%m-%d') for x in dates] # In the format yyyy-mm-dd
于 2021-03-07T08:15:31.647 回答