对两个日期值的持续时间进行舍入
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将
endDateEpochInMilliseconds -startDateEpochInMilliseconds
放入括号中!You defently must put
endDateEpochInMilliseconds -startDateEpochInMilliseconds
into brackets!