VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python时间获取及转换知识汇总(3)

获取上个月的最后一天(可能跨年)

代码如下:

1
2
3
4
5
6
>>> import datetime
>>> today = datetime.date.today()
>>> first = datetime.date(day=1, month=today.month, year=today.year)
>>> lastMonth = first - datetime.timedelta(days=1)
>>> lastMonth
datetime.date(2016, 10, 31)

 

其他使用例子:

1
2
3
#当月1号  datetime.date(datetime.date.today().year,datetime.date.today().month,1)  
#当月1号  datetime.date.today().replace(day=1)  
#上月1号  (datetime.date.today().replace(day=1) - datetime.timedelta(1)).replace(day=1)
 


相关教程