我尝试使用for循环生成季度日期,使用现有的代码行生成月度日期。
list_of_months = []
for y in range(2023,2027):
for m in range(12):
if (y==2026) and (m>0):
continue
list_of_months.append(datetime.datetime(year=y, month=m+1, day=1).strftime('%Y-%m-%d'))
我尝试将month的值从“month=m+1”更改为“month=m+3”,但遇到以下错误。
x一个一个一个一个x一个一个二个x
1条答案
按热度按时间wpx232ag1#
为了最小化日期增量的迭代,我建议使用dateuti l模块。
首先你需要安装它。