Python 获取上个月的第一天和最后一天
import datetime
now_time = datetime.datetime.now()
end_day_in_mouth = now_time.replace(day=1)
next_mouth = end_day_in_mouth - datetime.timedelta(days=1)
#获取上个月1 号的年月日
next_mouth.strftime('%Y-%m-1')
#获取上个月最后一天的的年月日
next_mouth.strftime('%Y-%m-%d'))
#获取到上个月的月份
last_month = next_mouth.month
#获取到上个月的最后一天
last_month_last_day = next_mouth.day