用python比较2个日期

发布于 2024-12-24 02:56:59 字数 331 浏览 0 评论 0原文

我需要用 IF 比较 2 个日期,但由于一些奇怪的 (:P) 原因,我无法做到这一点。 我的代码

date1 = strftime("%Y-%m-%d")
d2 = os.path.getmtime('/tmp/file')
date2 = datetime.date.fromtimestamp(d2)
if date1 == date2 :
    print 'same date'
else:
    print 'different date'

我不知道为什么,显示打印相同的日期,但是,用这个 IF 显示“不同的日期” 可能是新手问题,抱歉!

谢谢 !

I need to compare 2 dates with a IF, but for some strange (:P) reason, I can't do it.
My code

date1 = strftime("%Y-%m-%d")
d2 = os.path.getmtime('/tmp/file')
date2 = datetime.date.fromtimestamp(d2)
if date1 == date2 :
    print 'same date'
else:
    print 'different date'

I don't know why, show with a print the same date, but, with this IF shows 'different date'
Maybe is a newbie question, sorry !

Thank you !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十年九夏 2024-12-31 02:57:00

date1 是一个字符串,date2 是一个datetime.date。也许您的意思是date1 = datetime.date.today()

date1 is a string, and date2 is a datetime.date. Perhaps you meant date1 = datetime.date.today().

作死小能手 2024-12-31 02:57:00
  • time.strftime 返回 str 类型的对象(“字符串”)
  • datetime.date.fromtimestamp 返回 datetime 类型的对象.date

因此 date1date2 将是不同类型的对象。
比较不同类型的对象总是会产生False(这是强类型)

  • time.strftime returns an object of type str (a "string")
  • datetime.date.fromtimestamp returns an object of type datetime.date

So date1 and date2 will be objects of different types.
Comparing to objects of different types will always yield False (this is an aspect of strong typing)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文