如何在 Python 中使用 datetime 从当前日期获取最近 90 天(3 个月)的星期日

How to get Sundays of last 90 days (3 months) from current date using datetime in Python(如何在 Python 中使用 datetime 从当前日期获取最近 90 天(3 个月)的星期日)
本文介绍了如何在 Python 中使用 datetime 从当前日期获取最近 90 天(3 个月)的星期日的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试使用日期时间从 python 中的当前日期获取最近 90 天(星期日 3 个月星期日)的日期.我可以在周日获得最后 3 个月,但不能从当前日期开始.使用此代码,我将获得本月和过去 2 个月(共 3 个月)的星期日列表.

I am trying to get a date of last 90 days Sundays (3 months Sunday) from the current date in python using datetime. I am able to get last 3 months Sunday but not from current date. With this code i am getting list of Sunday from the current month and last 2 month (total 3 months).

from datetime import date, timedelta, datetime

def list_sunday(year, month, day):
  try:
    for i in range(1,4):
        d = date(year, month, day)
        d += timedelta(days = 6 -d.weekday())
        while d.month==month:
            yield d
            d += timedelta(days =+ 7)

        if month > 1:
            month = month - 1
        else:
            month = 12
            year = year - 1

        i+=1
  except Exception as e:
    log.error("XXX %s" % str(e))

for d in list_sunday(2019, 4, 05):
    print d

使用上面的代码,我得到了这个

With above code, i am getting this

2019-04-07
2019-04-14
2019-04-21
2019-04-28
2019-03-10
2019-03-17
2019-03-24
2019-03-31
2019-02-10
2019-02-17
2019-02-24

这就是我想要得到的,

2019-03-10
2019-03-17
2019-03-24
2019-03-31
2019-02-10
2019-02-17
2019-02-24
2019-01-06
2019-01-13
2019-01-20
2019-01-27

有人可以帮忙吗?

推荐答案

from datetime import date, timedelta
from pprint import pprint

def is_sunday(day):
    return day.weekday() == 6

def sundays_within_last_x_days(num_days = 90):
    result = []
    end_date = date.today()
    start_date = end_date - timedelta(days = num_days)

    while start_date <= end_date:
        if is_sunday(start_date):
            result.append(start_date)
        start_date += timedelta(days = 1)

    return result

if __name__ == "__main__":
    dates = sundays_within_last_x_days(30)
    pprint(dates)

资源

  • Python DateTime, TimeDelta, Strftime(格式)举例
  • datetime - 基本日期和时间类型
  • pprint - 数据漂亮的打印机
  • Python DateTime, TimeDelta, Strftime(Format) with Examples
  • datetime - Basic date and time types
  • pprint - Data pretty printer

这篇关于如何在 Python 中使用 datetime 从当前日期获取最近 90 天(3 个月)的星期日的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Seasonal Decomposition of Time Series by Loess with Python(Loess 用 Python 对时间序列进行季节性分解)
Resample a time series with the index of another time series(使用另一个时间序列的索引重新采样一个时间序列)
How can I simply calculate the rolling/moving variance of a time series in python?(如何在 python 中简单地计算时间序列的滚动/移动方差?)
How to use Dynamic Time warping with kNN in python(如何在python中使用动态时间扭曲和kNN)
Keras LSTM: a time-series multi-step multi-features forecasting - poor results(Keras LSTM:时间序列多步多特征预测 - 结果不佳)
Python pandas time series interpolation and regularization(Python pandas 时间序列插值和正则化)