datetime类的timedalte 表示两个时间的差值
datetime.timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)
均为可选参数。
举例:
#startdate 为某月1号 next_month = startdate + timedelta(days=calendar.monthrange(startdate.year, startdate.month)[1]) #(下月初) month_end = next_month - timedelta(days=1) #月末
datetime.datetime.strftime 对string类型转换为datetime类型
举例:
datetime.datetime.strftime(startdate, '%Y-%m-%d')