我一直在努力理解如何使用 datetime 对象。我想使用 datetime.date 实例作为字典中的键。然后我希望能够使用 datetime.delta 返回指定范围内的日期。
我的第一个难题是当我创建一个要输入字典的对象时。
class Work_day():
'''input a workday , date and hours worked'''
def __init__(self, date, hours, rate):
self.date = datetime.date()
self.hours = hours
self.rate = rate
我希望 self.date 成为 datetime.date 对象,但 datetime.date 需要 3 个参数(年、月、日),那么 def_init_ 参数“日期”的正确语法是什么?
然后我假设当我更改在 Work_day 类中的编写方式时,当我在 Timesheet 类中创建它的实例时,我将不得不修改我的代码,例如在 add_work_day() 方法中
class Timesheet():
'''Represent a collection of workdays'''
def __init__(self):
self.timesheet = {}
def add_work_day(self, date, hours,rate):
'''adds a record of a work day into the timesheet dictionary'''
day = Work_day(date, hours, rate)
if day.date in self.timesheet:
print("There is already an entry for this day. ")
else:
self.timesheet[day.date] = hours, rate
我一直在研究 python 文档和搜索书籍,但我没有得到它!需要一些帮助。
我还有一种方法可以在时间表中打印一系列工作日。当我将日期键替换为简单的 int 时,我让它工作了。这是(在''''''中)在下面的日期时间增量上进行了一次拙劣的尝试
def show_days(self):
'''shows a user defined range of dates and the total pay for that period'''
pp = pprint.PrettyPrinter()
date_from = input("From date: ")
date_to = input("To date: ")
t = self.timesheet
total = 0
'''for dates in range(date_from, date_to + 1):
if dates in t:
total += self.sum_day(dates)
pp.pprint((dates, t[dates)])
print("Total £", total)'''
date = date_start = datetime.date(date_from)
date_end = datetime.date(date_to)
while date <= date_end:
if date in t:
print(date, t[dates])
date += datetime.timedelta(days=1)
我希望有人能找到耐心与我交谈。干杯。