gpt4 book ai didi

python - 确定较大的月份,忽略日期

转载 作者:太空宇宙 更新时间:2023-11-04 10:25:32 24 4
gpt4 key购买 nike

我可以在 python 中编写什么函数来确定 f 的日期是否大于 t,忽略天组件 - 它显然是?

t = datetime.date(2014, 12, 30)
f = datetime.date(2015, 1 ,2)

我尝试了以下方法:

if t.month > f.month:

但是,这不起作用,因为它没有考虑年份。我只想使用年份和月份 - 而不是日期。

请注意,“t”也可能是 datetime.datetime(2015, 2, 2)

最佳答案

您可以将日期与 day 组件设置为 1 进行比较:

t.replace(day=1) < f.replace(day=1)

或者比较年份和月份:

if t.year < f.year or (t.year == f.year and t.month < f.month):

后者通过元组比较更容易测试:

if (t.year, t.month) < (f.year, f.month):

演示:

>>> from datetime import date
>>> t = date(2015, 1, 2)
>>> f = date(2015, 2, 2)
>>> t.replace(day=1) < f.replace(day=1)
True
>>> t.year < f.year or (t.year == f.year and t.month < f.month)
True
>>> (t.year, t.month) < (f.year, f.month)
True
>>> t = date(2014, 12, 30)
>>> f = date(2015, 1, 2)
>>> t.replace(day=1) < f.replace(day=1)
True
>>> t.year < f.year or (t.year == f.year and t.month < f.month)
True
>>> (t.year, t.month) < (f.year, f.month)
True

关于python - 确定较大的月份,忽略日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29490382/

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