对两个日期值的持续时间进行舍入

发布于 2024-10-30 17:02:58 字数 302 浏览 0 评论 0原文

我在 Python 中有两个 date 值,我试图从中获取四舍五入的持续时间。

例如:01-01-2000 到 12-31-2099 实际上是“100 年”,而不是“99 年”。

我有一个 Java 示例,但我不确定如何将其移植到 Python 语言中:

round(endDateEpochInMilliseconds -startDateEpochInMilliseconds /(365.25 * 24 * 3600 * 1000))

我确信类似的操作在 Python 中也是可行的。

I have two date values in Python which Im trying to get a rounded duration from.

For example: 01-01-2000 to 12-31-2099 is really "100 years", not "99 years".

I have an example, in Java, but Im not sure how to port this to Python speak:

round(endDateEpochInMilliseconds -startDateEpochInMilliseconds /(365.25 * 24 * 3600 * 1000))

Im sure something similar is doable in Python.

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

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

发布评论

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

评论(2

公布 2024-11-06 17:02:58
import datetime

date1 = datetime.date(2000,1,1)
date2 = datetime.date(2099, 12, 31)

delta = date2-date1

print round(delta.days/365.25,0)
import datetime

date1 = datetime.date(2000,1,1)
date2 = datetime.date(2099, 12, 31)

delta = date2-date1

print round(delta.days/365.25,0)
十年九夏 2024-11-06 17:02:58

您必须将 endDateEpochInMilliseconds -startDateEpochInMilliseconds 放入括号中!

round( (endDateEpochInMilliseconds -startDateEpochInMilliseconds) /(365.25 * 24 * 3600 * 1000))

You defently must put endDateEpochInMilliseconds -startDateEpochInMilliseconds into brackets!

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