比如字符串2022-01自动变成2022-01-31,2022-02变成2022-02-28,依次类推。
或者也可以是以下转换好之后的数据,应该也是str
dt=datetime.datetime.today().strftime('%Y-%m')
比如字符串2022-01自动变成2022-01-31,2022-02变成2022-02-28,依次类推。
或者也可以是以下转换好之后的数据,应该也是str
dt=datetime.datetime.today().strftime('%Y-%m')
# 可以直接获取本月最后一天
this_month_end = datetime.datetime(now.year, now.month, calendar.monthrange(now.year, now.month)[1])