如何从字典中检索时间戳并将其转换为日期时间对象?

发布于 2024-10-31 08:12:32 字数 179 浏览 1 评论 0原文

我有一个这种形式的时间戳字典 2011-03-01 17:52:49.728883 和 ids。如何检索最新时间戳并将其表示在 python datetime 对象中?

重点是能够使用时间戳的最新日期而不是上面代码中的当前日期。

latest = datetime.now()

I have a dictionary of timestamps in this form 2011-03-01 17:52:49.728883 and ids. How can I retrieve the latest timestamp and represent it in python datetime object?

The point is to be able to use the latest date of the timestamp instead of the currnt date in above code.

latest = datetime.now()

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

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

发布评论

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

评论(1

枕花眠 2024-11-07 08:12:32

您的字典的结构从您的问题中并不完全清楚,所以我假设键是包含时间戳的字符串,就像您问题中的时间戳一样。

如果d是字典:

datetime.strptime(max(d.keys()),'%Y-%m-%d %H:%M:%S.%f' )

上面的代码使用了这样一个事实:日期时间字符串的字典顺序按时间顺序对时间戳进行排序。如果您不想依赖它,可以使用:

max(map(lambda dt:datetime.strptime(dt,'%Y-%m-%d %H:%M:%S.%f '),d.keys()))

The structure of your dictionary is not entirely clear from your question, so I'll assume the keys are strings containing timestamps like the one in your question.

If d is the dictionary:

datetime.strptime(max(d.keys()),'%Y-%m-%d %H:%M:%S.%f')

The above code uses the fact that the lexicographical ordering of your datetime strings sorts timestamps in chronological order. If you'd rather not rely on that, you could use:

max(map(lambda dt:datetime.strptime(dt,'%Y-%m-%d %H:%M:%S.%f'),d.keys()))

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