所以我有一個熊貓DATE_RANGE像這樣 dates = pd.date_range(start='2005-1-1', end='2014-12-31', freq='D')
我想刪除所有來自閏年造成額外的天。 我做一個for循環 for each in index:
if each.month==2 and each.day==29:
print(each) # I
我有一個數據庫(SQL 2014),它包含以下項目: Name Date
John 02/02/2017
John 03/02/2017
John 04/02/2017
John 13/03/2017
John 14/03/2017
這些條目所代表缺勤塊 - 這可能是每一個短短的一天時間或幾天的塊(可能會在一個塊內進行月份轉換)。 我想如下總結這些數據: Name MinDate
我有一組包含日期範圍的文檔。我想在特定的時間內獲得時間表。 例如,以下是2個事件。 1. Event 1 - from 10th to 20th
2. Event 2 - from 15th to 25th
獲取從1日到30日的日程安排。期待下面的輸出。 1. Date 10th to 14th - Event 1
2. Date 15th to 20th - Event 1 and Ev