截断Python DateTime [英] Truncate Python DateTime

查看:98
本文介绍了截断Python DateTime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

截取python datetime对象的方法是什么?

What is a classy way to way truncate a python datetime object?

在这种特殊情况下,到当天。所以基本上设置小时,分,秒和微秒为0。

In this particular case, to the day. So basically setting hour, minute, seconds, and microseconds to 0.

我希望输出也是一个datetime对象,而不是字符串。

I would like the output to also be a datetime object, not a string.

推荐答案

我认为这是你要找的...

I think this is what you're looking for...

>>> dt = datetime.datetime.now()
>>> dt = dt.replace(hour=0, minute=0, second=0, microsecond=0) # Returns a copy
>>> dt
datetime.datetime(2011, 3, 29, 0, 0)

但是你真的不在乎时间方面的事情,那么你应该真的只是绕过日期对象...

But if you really don't care about the time aspect of things, then you should really only be passing around date objects...

>>> d_truncated = datetime.date(dt.year, dt.month, dt.day)
>>> d_truncated
datetime.date(2011, 3, 29)

这篇关于截断Python DateTime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆