python 日期操作类代码


Posted in Python onMay 05, 2018

完整代码

# -*- coding: utf-8 -*-

'''获取当前日期前后N天或N月的日期'''

from time import strftime, localtime
from datetime import timedelta, date
import calendar

year = strftime("%Y",localtime())
mon = strftime("%m",localtime())
day = strftime("%d",localtime())
hour = strftime("%H",localtime())
min = strftime("%M",localtime())
sec = strftime("%S",localtime())

def today():
 '''''
 get today,date format="YYYY-MM-DD"
 '''''
 return date.today()

def todaystr():
 '''
 get date string, date format="YYYYMMDD"
 '''
 return year+mon+day

def datetime():
 '''''
 get datetime,format="YYYY-MM-DD HH:MM:SS"
 '''
 return strftime("%Y-%m-%d %H:%M:%S",localtime())

def datetimestr():
 '''''
 get datetime string
 date format="YYYYMMDDHHMMSS"
 '''
 return year+mon+day+hour+min+sec

def get_day_of_day(n=0):
 '''''
 if n>=0,date is larger than today
 if n<0,date is less than today
 date format = "YYYY-MM-DD"
 '''
 if(n<0):
  n = abs(n)
  return date.today()-timedelta(days=n)
 else:
  return date.today()+timedelta(days=n)

def get_days_of_month(year,mon): 
 ''''' 
 get days of month 
 ''' 
 return calendar.monthrange(year, mon)[1] 
 
def get_firstday_of_month(year,mon): 
 ''''' 
 get the first day of month 
 date format = "YYYY-MM-DD" 
 ''' 
 days="01" 
 if(int(mon)<10): 
  mon = "0"+str(int(mon)) 
 arr = (year,mon,days) 
 return "-".join("%s" %i for i in arr) 
 
def get_lastday_of_month(year,mon): 
 ''''' 
 get the last day of month 
 date format = "YYYY-MM-DD" 
 ''' 
 days=calendar.monthrange(year, mon)[1] 
 mon = addzero(mon) 
 arr = (year,mon,days) 
 return "-".join("%s" %i for i in arr) 
 
def get_firstday_month(n=0): 
 ''''' 
 get the first day of month from today 
 n is how many months 
 ''' 
 (y,m,d) = getyearandmonth(n) 
 d = "01" 
 arr = (y,m,d) 
 return "-".join("%s" %i for i in arr) 
 
def get_lastday_month(n=0): 
 ''''' 
 get the last day of month from today 
 n is how many months 
 ''' 
 return "-".join("%s" %i for i in getyearandmonth(n)) 
 
def getyearandmonth(n=0): 
 ''''' 
 get the year,month,days from today 
 befor or after n months 
 ''' 
 thisyear = int(year) 
 thismon = int(mon) 
 totalmon = thismon+n 
 if(n>=0): 
  if(totalmon<=12): 
   days = str(get_days_of_month(thisyear,totalmon)) 
   totalmon = addzero(totalmon) 
   return (year,totalmon,days) 
  else: 
   i = totalmon/12 
   j = totalmon%12 
   if(j==0): 
    i-=1 
    j=12 
   thisyear += i 
   days = str(get_days_of_month(thisyear,j)) 
   j = addzero(j) 
   return (str(thisyear),str(j),days) 
 else: 
  if((totalmon>0) and (totalmon<12)): 
   days = str(get_days_of_month(thisyear,totalmon)) 
   totalmon = addzero(totalmon) 
   return (year,totalmon,days) 
  else: 
   i = totalmon/12 
   j = totalmon%12 
   if(j==0): 
    i-=1 
    j=12 
   thisyear +=i 
   days = str(get_days_of_month(thisyear,j)) 
   j = addzero(j) 
   return (str(thisyear),str(j),days) 
 
def addzero(n): 
 ''''' 
 add 0 before 0-9 
 return 01-09 
 ''' 
 nabs = abs(int(n)) 
 if(nabs<10): 
  return "0"+str(nabs) 
 else: 
  return nabs 

def get_today_month(n=0): 
 ''''' 
 获取当前日期前后N月的日期
 if n>0, 获取当前日期前N月的日期
 if n<0, 获取当前日期后N月的日期
 date format = "YYYY-MM-DD" 
 ''' 
 (y,m,d) = getyearandmonth(n) 
 arr=(y,m,d) 
 if(int(day)<int(d)): 
  arr = (y,m,day) 
 return "-".join("%s" %i for i in arr) 
 

if __name__=="__main__":
 print today() 
 print todaystr()
 print datetime()
 print datetimestr()
 print get_day_of_day(20)
 print get_day_of_day(-3)
 print get_today_month(-3)
 print get_today_month(3)

这篇关于python 日期操作类的文章就介绍到这,里面涉及了python日期操作的一些基础知识。

Python 相关文章推荐
python实现多线程暴力破解登陆路由器功能代码分享
Jan 04 Python
Python3实现将文件树中所有文件和子目录归档到tar压缩文件的方法
May 22 Python
Python实现多线程抓取网页功能实例详解
Jun 08 Python
python单例模式获取IP代理的方法详解
Sep 13 Python
python提取照片坐标信息的实例代码
Aug 14 Python
使用 Python 清理收藏夹里已失效的网站
Dec 03 Python
pytorch 中pad函数toch.nn.functional.pad()的用法
Jan 08 Python
Tensorflow之MNIST CNN实现并保存、加载模型
Jun 17 Python
Python实现一个简单的递归下降分析器
Aug 01 Python
Python中三维坐标空间绘制的实现
Sep 22 Python
Python 实现RSA加解密文本文件
Dec 30 Python
关于python中模块和重载的问题
Nov 02 Python
Python批量发送post请求的实现代码
May 05 #Python
PyQt5 pyqt多线程操作入门
May 05 #Python
详解pyqt5 动画在QThread线程中无法运行问题
May 05 #Python
python中in在list和dict中查找效率的对比分析
May 04 #Python
Django如何配置mysql数据库
May 04 #Python
Python实现求一个集合所有子集的示例
May 04 #Python
python list是否包含另一个list所有元素的实例
May 04 #Python
You might like
解析:使用php mongodb扩展时 需要注意的事项
2013/06/18 PHP
php 强制下载文件实现代码
2013/10/28 PHP
yii2利用自带UploadedFile实现上传图片的示例
2017/02/16 PHP
记录Yii2框架开发微信公众号遇到的问题及解决方法
2018/07/20 PHP
PHP页面静态化――纯静态与伪静态用法详解
2020/06/05 PHP
大家未必知道的Js技巧收藏
2008/04/07 Javascript
javascript 传统事件模型构造的事件监听器实现代码
2010/05/31 Javascript
详细分析JavaScript变量类型
2015/07/08 Javascript
BootStrap tooltip提示框使用小结
2016/10/26 Javascript
easyui messager alert 三秒后自动关闭提示的实例
2016/11/07 Javascript
设置jquery UI 控件的大小方法
2016/12/12 Javascript
看看“疫苗查询”小程序有温度的代码
2018/07/31 Javascript
小程序实现横向滑动日历效果
2019/10/21 Javascript
javascript实现切割轮播效果
2019/11/28 Javascript
JS快速实现简单计算器
2020/04/08 Javascript
JavaScript如何实现监听键盘输入和鼠标监点击
2020/07/20 Javascript
[50:22]完美盛典-2018年度红毯走秀
2018/12/16 DOTA
python实现360的字符显示界面
2014/02/21 Python
python脚本执行CMD命令并返回结果的例子
2019/08/14 Python
使用python实现回文数的四种方法小结
2019/11/24 Python
python颜色随机生成器的实例代码
2020/01/10 Python
基于CSS3制作立体效果导航菜单
2016/01/12 HTML / CSS
详解H5本地储存Web Storage
2017/07/03 HTML / CSS
香港个人化生活购物网站:Ballyhoo Limited
2016/09/10 全球购物
Chupi官网:在爱尔兰手工制作的订婚、结婚戒指和精美珠宝
2020/09/28 全球购物
简单的JAVA编程面试题
2013/03/19 面试题
内科护士实习自我鉴定
2013/10/17 职场文书
导游的职业规划书范文
2013/12/27 职场文书
详细的本科生职业生涯规划范文
2014/09/16 职场文书
授权委托书协议书
2014/10/16 职场文书
2015年重阳节活动主持词
2015/07/30 职场文书
网络研修心得体会
2016/01/08 职场文书
「魔法少女伊莉雅」美游粘土人开订
2022/03/21 日漫
vue使用refs获取嵌套组件中的值过程
2022/03/31 Vue.js
Python使用mitmproxy工具监控手机 下载手机小视频
2022/04/18 Python
mysql通过group by分组取最大时间对应数据的两种有效方法
2022/09/23 MySQL