僅可以在年份和月份創建date對象嗎?我不需要一天。只有年份和月份的日期對象
In [5]: from datetime import date
In [6]: date(year=2013, month=1)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-6-a84d4034b10c> in <module>()
----> 1 date(year=2013, month=1)
TypeError: Required argument 'day' (pos 3) not found
我使用日期對象在我的字典鍵和1月20日必須具有相同的密鑰1月21日,因爲他們在同一月份和年份。
我之前使用的簡單整數是月份數。不幸的是我也需要知道一年!