python获取起止日期段中的时间列表

Posted saodisen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python获取起止日期段中的时间列表相关的知识,希望对你有一定的参考价值。

if __name__ == "__main__":
    print get_date_list(‘2018-01-01‘, ‘2018-02-28‘)

为了调用datetime等这些已有的库,你需要在文件最上方加入引用语句:

import time
from datetime import datetime, timedelta

 

Method 1. 获取起止日期时间段的所有时间列表:

# Get date list from begin_date to end_date
def get_date_list(begin_date, end_date):
    dates = []
    # Get the time tuple : dt
    dt = datetime.strptime(begin_date, "%Y-%m-%d")
    date = begin_date[:]
    while date <= end_date:
        dates.append(date)
        dt += timedelta(days=1)
        date = dt.strftime("%Y-%m-%d")
    return dates

Method 2. 获取起止日期时间段的所有工作日 (周一到周五) 时间列表:

# Get date list from begin_date to end_date
def get_date_list(begin_date, end_date):
    dates = []
    # Get the time tuple : dt
    dt = datetime.strptime(begin_date, "%Y-%m-%d")
    date = begin_date[:]
    while date <= end_date:
        if dt.strftime("%w") in ["1", "2", "3", "4", "5"]:
            dates.append(date)
        dt += timedelta(days=1)
        date = dt.strftime("%Y-%m-%d")
    return dates

Method 3. 获取起止日期时间段的所有双休日 (周六和周日) 时间列表:

# Get date list from begin_date to end_date
def get_date_list(begin_date, end_date):
    dates = []
    # Get the time tuple : dt
    dt = datetime.strptime(begin_date, "%Y-%m-%d")
    date = begin_date[:]
    while date <= end_date:
        if dt.strftime("%w") in ["6", "0"]:
            dates.append(date)
        dt += timedelta(days=1)
        date = dt.strftime("%Y-%m-%d")
    return dates

以上是关于python获取起止日期段中的时间列表的主要内容,如果未能解决你的问题,请参考以下文章

PHP 根据年、周数获取周的起止日期

python 获取时间范围内日期列表

hutool日期工具类相关:获取某月所有周某周的起止时间或所有日期计算连续天数

将 HTML 表解析为 Python 列表?

iOS 获取本周,本月,本季,的起止日期

获取比python中另一个字符串“大”的字符串列表的元素