加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

利用python获取某年中每个月的第一天和最后一天

发布时间:2020-12-16 19:55:55 所属栏目:Python 来源:网络整理
导读:搜索关键字: python get every first day of month 参考解答: 方法一: import calendar calendar.monthrange(2002,1)(1,31) calendar.monthrange(2008,2)(4,29) calendar.monthrange(2100,2)(0,28) calendar.monthrange(2016,2)[1] 方法二: import datet

搜索关键字:

python get every first day of month

参考解答:

方法一:

>>> import calendar
>>> calendar.monthrange(2002,1)
(1,31)
>>> calendar.monthrange(2008,2)
(4,29)
>>> calendar.monthrange(2100,2)
(0,28)
 
>>> calendar.monthrange(2016,2)[1]

方法二:

import datetime
for x in xrange(1,13):
  dt_start = (datetime.datetime(2016,x,1)).strftime("%Y%m%d")
  if 12 == x:
    dt_end = (datetime.datetime(2016,12,31)).strftime("%Y%m%d")
  else:
    dt_end = (datetime.datetime(2016,x+1,1) - datetime.timedelta(days = 1)).strftime("%Y%m%d")
  print dt_start,dt_end

参考链接:

http://stackoverflow.com/questions/42950/get-last-day-of-the-month-in-python

https://docs.python.org/2/library/calendar.html

https://docs.python.org/2/library/datetime.html

http://stackoverflow.com/questions/22696662/python-list-of-first-day-of-month-for-given-period

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家学习或者使用python能有一定的帮助,如果有疑问大家可以留言交流。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读