python 获取过去几天,过去几个月,过去几年的时间列表

python 获取过去几天,过去几个月,过去几年的时间列表,第1张

概述在平时的开发中,需要获取最近几个月,最近几年或者最近几天的时间列表,本文使用了arrow去实现了这几个过程。defget_day(num):day_list=[]a=arrow.now()#当前本地时间foriinrange(0,num+1):yearmonth=a.shift(days=-i)

在平时的开发中,需要获取最近几个月,最近几年或者最近几天的时间列表,本文使用了arrow去实现了这几个过程。

    def get_day(num):        day_List = []        a = arrow.Now()  # 当前本地时间        for i in range(0, num + 1):            yearmonth = a.shift(days=-i).format("YYYY-MM-DD")            day_List.append(yearmonth)        return day_List        print(get_day(10))        def get_month(num):        month_List = []        a = arrow.Now()  # 当前本地时间        for i in range(0,num+1):            yearmonth = a.shift(months=-i).format("YYYYMM")            month_List.append(yearmonth)        return month_List    print(get_month(10))    def get_year(num):        year_List = []        a = arrow.Now()  # 当前本地时间        for i in range(0,num+1):            year = a.shift(years=-i).format("YYYY")            year_List.append(year)        return year_List    print(get_year(10))

输出结果

  

C:\python37\python3.exe D:/shannanai_spIDer/test/test.py['2021-05-29', '2021-05-28', '2021-05-27', '2021-05-26', '2021-05-25', '2021-05-24', '2021-05-23', '2021-05-22', '2021-05-21', '2021-05-20', '2021-05-19']['202105', '202104', '202103', '202102', '202101', '202012', '202011', '202010', '202009', '202008', '202007']['2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014', '2013', '2012', '2011']Process finished with exit code 0

 

总结

以上是内存溢出为你收集整理的python 获取过去几天,过去几个月,过去几年的时间列表全部内容,希望文章能够帮你解决python 获取过去几天,过去几个月,过去几年的时间列表所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1185544.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存