Python实现日期判断和加减操作详解

 更新时间:2022年01月12日 09:48:00   作者:幸福的达哥  
这篇文章主要介绍了如何利用Python实现日期的判断,以及对日期的加减操作,文中的示例代码对我们学习或工作有一定的价值,需要的可以参考一下

python实现日期判断和加减操作

#====================================================
#时间相关
#====================================================
 
def if_workday(day_str, separator=""):
    """
    if a day is workday
    
    :param day_str: string of a day
    :param separator: separator of year, month and day, default is empty
    :return: True: is workday; False: not workday
    """
    spec = "%Y" + separator + "%m" + separator + "%d"
    day = datetime.strptime(day_str, spec).date()
    # Monday == 0 ... Sunday == 6
    if day.weekday() in [0, 1, 2, 3, 4]:
        return True
    else:
        return False
 
def if_weekend(day_str, separator=""):
    """
    if a day is weekend
    
    :param day_str: string of a day
    :param separator: separator of year, month and day, default is empty
    :return: True: is weekend; False: not weekend
    """
    spec = "%Y" + separator + "%m" + separator + "%d"
    day = datetime.strptime(day_str, spec).date()
    # Monday == 0 ... Sunday == 6
    if day.weekday() in [5, 6]:
        return True
    else:
        return False
 
def is_week_lastday():
    '''
    判断今天是否为周末,return the day of the week as an integer,Monday is 0 and Sunday is 6
    
    :return:
    '''
    
    now = (datetime.datetime.utcnow() + datetime.timedelta(hours=8))
    # 假如今天是周日
    todayIndex = now.weekday()
    # 如果今天是周日,则返回True
    if todayIndex == 6:
        print("todayIndex={},今天是周末...".format(todayIndex))
        return True
    else:
        print("todayIndex={},今天是周 {},不是周末...".format(todayIndex,int(todayIndex+1)))
        return False
    
def is_week_whichday(dayIndex=6):
    '''
    判断今天一周的哪一天,周一为0,周末为6,return the day of the week as an integer,Monday is 0 and Sunday is 6
    
    :return:
    '''
    
    now = (datetime.datetime.utcnow() + datetime.timedelta(hours=8))
    # 假如今天是周日
    todayIndex = now.weekday()
    # 如果今天是周日,则返回True
    if todayIndex == dayIndex:
        print("todayIndex={},今天是周 {},不是周 {}...".format(todayIndex, int(todayIndex+1),int(dayIndex+1)))
        return True
    else:
        print("todayIndex={},今天是周 {},不是周 {}...".format(todayIndex,int(todayIndex+1),int(dayIndex+1)))
        return False
 
def is_month_lastday():
    '''
    # 判断今天是否为月末
    
    :return:
    '''
    
    # 获得当月1号的日期
    start_date = datetime.date.today().replace(day=1)
    # 获得当月一共有多少天(也就是最后一天的日期)
    _, days_in_month = calendar.monthrange(start_date.year, start_date.month)
 
    todayIndex = time.strftime("%d", time.localtime())
    
    # 如果今天是周末,返回True
    if int(todayIndex) == int(days_in_month):
        print("start_date={},todayIndex={},days_in_month={},今天是月末...".format(start_date,todayIndex, days_in_month))
        return True
    else:
        print("start_date={},todayIndex={},days_in_month={},今天不是月末...".format(start_date,todayIndex , days_in_month))
        return False
 
def get_this_week_start():
    '''
    获取本周第一天日期
    
    :return:
    '''
    now = datetime.datetime.now()
    this_week_start = now - timedelta(days=now.weekday())
    this_week_end = now + timedelta(days=6 - now.weekday())
    print('--- this_week_start = {} this_week_end = {}'.format(this_week_start, this_week_end))
    print('--- this_week_start = {} '.format(this_week_start))
    return this_week_start
    
def get_this_week_end():
    '''
    # 获取本周最后一天日期
    
    :return:
    '''
    
    now = datetime.datetime.now()
    this_week_start = now - timedelta(days=now.weekday())
    this_week_end = now + timedelta(days=6 - now.weekday())
    print('--- this_week_start = {} this_week_end = {}'.format(this_week_start, this_week_end))
    print('--- this_week_end = {}'.format(this_week_end))
    return this_week_end
 
def get_last_month_start(now = datetime.datetime.now()):
    
    now = datetime.datetime.strptime(now, "%Y-%m-%d")
    # 本月第一天和最后一天
    this_month_start = datetime.datetime(now.year, now.month, 1)
    this_month_end = datetime.datetime(now.year, now.month + 1, 1) - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    # print('--- this_month_start = {} this_month_end = {}'.format(this_month_start, this_month_end))
    
    # 上月第一天和最后一天
    last_month_end = this_month_start - timedelta(days=1)+ datetime.timedelta(hours=23, minutes=59, seconds=59)
    last_month_start = datetime.datetime(last_month_end.year, last_month_end.month, 1)
    # print('--- last_month_end = {} last_month_start = {}'.format(last_month_end, last_month_start))
    print('--- last_month_start = {}'.format(last_month_start))
    return last_month_start
 
def get_last_month_end(now = datetime.datetime.now()):
    now = datetime.datetime.strptime(now, "%Y-%m-%d")
    # 本月第一天和最后一天
    this_month_start = datetime.datetime(now.year, now.month, 1)
    this_month_end = datetime.datetime(now.year, now.month + 1, 1) - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    # print('--- this_month_start = {} this_month_end = {}'.format(this_month_start, this_month_end))
    
    # 上月第一天和最后一天
    last_month_end = this_month_start - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    last_month_start = datetime.datetime(last_month_end.year, last_month_end.month, 1)
    # print('--- last_month_end = {} last_month_start = {}'.format(last_month_end, last_month_start))
    print('--- last_month_end = {} '.format(last_month_end))
    return last_month_end
 
def get_this_month_start(now = datetime.datetime.now()):
    now = datetime.datetime.strptime(now, "%Y-%m-%d")
    # 本月第一天和最后一天
    this_month_start = datetime.datetime(now.year, now.month, 1)
    this_month_end = datetime.datetime(now.year, now.month + 1, 1) - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    # print('--- this_month_start = {} this_month_end = {}'.format(this_month_start, this_month_end))
    
    # 上月第一天和最后一天
    last_month_end = this_month_start - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    last_month_start = datetime.datetime(last_month_end.year, last_month_end.month, 1)
    # print('--- last_month_end = {} last_month_start = {}'.format(last_month_end, last_month_start))
    print('--- this_month_start = {} '.format(this_month_start))
    return this_month_start
 
def get_this_month_end(now = datetime.datetime.now()):
    now=datetime.datetime.strptime(now, "%Y-%m-%d")
    # 本月第一天和最后一天
    this_month_start = datetime.datetime(now.year, now.month, 1)
    # this_month_end = datetime.datetime(now.year, now.month + 1, 1) - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    
    if now.month < 12:
        this_month_end = datetime.datetime(now.year, now.month + 1, 1) - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    elif  now.month >= 12:
        this_month_end = datetime.datetime(now.year, now.month , now.day+30) + datetime.timedelta(hours=23, minutes=59, seconds=59)
 
        
    # print('--- this_month_start = {} this_month_end = {}'.format(this_month_start, this_month_end))
    
    # 上月第一天和最后一天
    last_month_end = this_month_start - timedelta(days=1) + datetime.timedelta(hours=23, minutes=59, seconds=59)
    last_month_start = datetime.datetime(last_month_end.year, last_month_end.month, 1)
    # print('--- last_month_end = {} last_month_start = {}'.format(last_month_end, last_month_start))
    # print('--- this_month_end = {} '.format(this_month_end))
    return str(this_month_end)
 
#从一个时间段获取其中的每一天,可以自定义时间间隔
def get_every_day(start = '2018-01-01',end = '2021-01-01',daysCount=1):
    '''
    从一个时间段获取其中的每一天,可以自定义时间间隔
    
    :param start: str类型,开始时间,如:'2018-01-01'
    :param end: str类型,结束时间,如:'2021-01-01'
    :param daysCount: int类型,每一个时间间隔,默认为1天
    :return:
    '''
    datestart = datetime.datetime.strptime(start, '%Y-%m-%d')
    dateend = datetime.datetime.strptime(end, '%Y-%m-%d')
    
    date_list=[]
    while datestart < dateend:
        datestart += datetime.timedelta(days=daysCount)
        date_str=str(datestart.strftime('%Y-%m-%d'))
        # print('date_str={}'.format(date_str))
        date_list.append(date_str)
 
    print('date_list={}'.format(date_list))
    return date_list
 
#从一个时间段获取其中的每一月,可以自定义时间间隔
def getBetweenEveryMonth(begin_date,end_date):
    date_list = []
    begin_date = datetime.datetime.strptime(begin_date, "%Y-%m-%d")
    end_date = datetime.datetime.strptime(end_date, "%Y-%m-%d")
    # end_date = datetime.datetime.strptime(time.strftime('%Y-%m-%d', time.localtime(time.time())), "%Y-%m-%d")
    while begin_date <= end_date:
        date_str = begin_date.strftime("%Y-%m-%d")
        begin_date = add_months_start(begin_date, 1)
        date_end=get_this_month_end(date_str)
        date_list.append((date_str+' 00:00:00',date_end))
        
    print('date_list={}'.format(date_list))
    return date_list
 
 
def add_months_start(dt, months):
    month = int(dt.month - 1 + months)
    year = int(dt.year + month / 12)
    month = int(month % 12 + 1)
    day = min(dt.day, calendar.monthrange(year, month)[1])
    return dt.replace(year=year, month=month, day=day)
 
def add_months_end(dt, months):
    month = int(dt.month - 1 + months)
    year = int(dt.year + month / 12)
    month = int(month % 12 + 1)
    day = max(dt.day, calendar.monthrange(year, month)[1])
    return dt.replace(year=year, month=month, day=day)

到此这篇关于Python实现日期判断和加减操作详解的文章就介绍到这了,更多相关Python日期判断 加减操作内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • python实现学生成绩测评系统

    python实现学生成绩测评系统

    这篇文章主要为大家详细介绍了python实现学生成绩测评系统,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-06-06
  • python基础教程之面向对象的一些概念

    python基础教程之面向对象的一些概念

    这篇文章主要介绍了python基础教程之面向对象的一些概念,面向对象是一种代码组织方式,让代码复用最大化,需要的朋友可以参考下
    2014-08-08
  • pycharm如何debug for循环里面的错误值(推荐)

    pycharm如何debug for循环里面的错误值(推荐)

    一般debug时,在for循环里面的话,需要自己一步一步点,如果循环几百次那种就比较麻烦,此时可以采用try except的方式来解决,这篇文章主要介绍了pycharm如何debug for循环里面的错误值,需要的朋友可以参考下
    2024-07-07
  • python的函数参数你了解吗

    python的函数参数你了解吗

    这篇文章主要为大家详细介绍了python的函数参数,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2022-01-01
  • Pandas数据分析之批量拆分/合并Excel

    Pandas数据分析之批量拆分/合并Excel

    怎样将一个大的Excel拆分,或者将很多小Excel文件合并?下面这篇文章主要给大家介绍了关于Pandas数据分析之批量拆分/合并Excel的相关资料,需要的朋友可以参考下
    2021-09-09
  • python关于第三方日志的QA记录详解

    python关于第三方日志的QA记录详解

    这篇文章主要为大家介绍了python关于第三方日志的QA记录详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-10-10
  • Python中不可错过的五个超有用函数

    Python中不可错过的五个超有用函数

    在本文中,我们用代码详细说明了Python中超实用的5个函数的重要作用,这些函数虽然简单,但却是Python中功能最强大的函数,下面一起来看看文章的详细介绍吧,希望对你的学习有所帮助
    2022-01-01
  • 撤回我也能看到!教你用Python制作微信防撤回脚本

    撤回我也能看到!教你用Python制作微信防撤回脚本

    如果好友短时间发送多条消息然后撤回会难以判断究竟撤回的是哪条信息,只能靠猜.后来我觉得“猜”这个事情特别不Pythonic,研究一段时间后找到了解决方案,不得不惊叹ItChat真的好强大,需要的朋友可以参考下
    2021-06-06
  • python3中sorted函数里cmp参数改变详解

    python3中sorted函数里cmp参数改变详解

    在本篇文章里小编给大家整理的是关于python3中sorted函数里关于cmp这一参数的改变相关内容,需要的朋友们可以学习下。
    2020-03-03
  • 比较两个numpy数组并实现删除共有的元素

    比较两个numpy数组并实现删除共有的元素

    这篇文章主要介绍了比较两个numpy数组并实现删除共有的元素,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-02-02

最新评论