0
我使用datetime
Python的日期 - 編程困境
我的用戶時間表,這是選擇一週列表(週日至至週六)
timesheet_entries = [entry for entry in timesheet_entries if within_dates(datetime.datetime.strptime(entry["work_performed_on"], "%Y-%m-%d").date())]
我需要檢索的時間已提交每天每個條目(每天可以有多個條目)。 entry["work"
]返回成員用於該條目的時間量。
任何想法?我並不是在尋找代碼的答案,而是更多地瞭解它的邏輯。 例如,我可以要求每一天的條目,如monday = [entry for entry in timesheet_entries if within_dates (monday etc)]
然後循環通過caclulating時間,每天做同樣的事情。
你'within_dates'功能只一個參數?是否像'within_days_back'? – jro