如何从字典中检索时间戳并将其转换为日期时间对象?
我有一个这种形式的时间戳字典 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的字典的结构从您的问题中并不完全清楚,所以我假设键是包含时间戳的字符串,就像您问题中的时间戳一样。
如果
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()))