>>> start_date = date(1983, 11, 23)
>>> start_date.replace(month=start_date.month+1)
datetime.date(1983, 12, 23)
これは、月が来るまで、<=11
私がやるとすぐに機能します
>>> start_date = date(1983, 12, 23)
>>> start_date.replace(month=start_date.month+1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: month must be in 1..12
12月に新しい月が追加されたときに年をインクリメントする月を追加し続けるにはどうすればよいですか?