编程语言
首页 > 编程语言> > python3-关于日期的函数使用记录

python3-关于日期的函数使用记录

作者:互联网

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')

 

标签:startdate,函数,timedelta,days,month,next,日期,datetime,python3
来源: https://www.cnblogs.com/olio1993/p/14362467.html