我的同事需要我从python时间戳对象中删除毫秒,以符合旧的POSIX (IEEE Std 1003.1-1988)标准。对于我来说,完成这项任务的曲折路线如下:
datetime.datetime.strptime(datetime.datetime.today().strftime("%Y-%m-%d %H:%M:%S"),"%Y-%m-%d %H:%M:%S")
是否有更简单的方法来结束一个日期时间。datetime对象mongoDB比这?
您可以使用datetime.replace()
方法-
>>> d = datetime.datetime.today().replace(microsecond=0)
>>> d
datetime.datetime(2015, 7, 18, 9, 50, 20)