gpt4 book ai didi

python - 在 Python 中创建连续年份月份的列表

转载 作者:行者123 更新时间:2023-12-02 02:46:01 24 4
gpt4 key购买 nike

我尝试使用以下命令创建从 2020-06(上个月从今天开始)到 2021-05年-月列表以下代码:

from datetime import datetime
from dateutil.relativedelta import relativedelta
need_months = list(range(-1, 12))
print([(datetime.today()+ relativedelta(months=i if i < 0 else i - 1)).strftime('%Y-%m') for i in need_months])

输出:

['2020-06', '2020-06', '2020-07', '2020-08', '2020-09', '2020-10', '2020-11', '2020-12', '2021-01', '2021-02', '2021-03', '2021-04', '2021-05']

但您可能会注意到,列表中有两个 2020-06

我怎样才能正确地做到这一点?

预期结果:

['2020-06', '2020-07', '2020-08', '2020-09', '2020-10', '2020-11', '2020-12', '2021-01', '2021-02', '2021-03', '2021-04', '2021-05']

最佳答案

这里是可能的用途period_range将今天转换为月份期间 Timestamp.to_period ,对于上个月减去 1 并添加 12 个周期参数:

now = pd.Timestamp.now().to_period('m')
L = pd.period_range(now-1, freq='M', periods=12).strftime('%Y-%m').tolist()
print (L)
['2020-06', '2020-07', '2020-08', '2020-09', '2020-10', '2020-11',
'2020-12', '2021-01', '2021-02', '2021-03', '2021-04', '2021-05']

关于python - 在 Python 中创建连续年份月份的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62788293/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com