gpt4 book ai didi

来自日、月、年的 Python 时间戳

转载 作者:IT老高 更新时间:2023-10-28 22:20:33 28 4
gpt4 key购买 nike

是否可以在 Python 中创建一个仅包含日期对象的日、月和年的 UNIX 时间戳(秒数)?我本质上是在寻找午夜时的时间戳(小时、分钟和秒为 0)。

谢谢!

最佳答案

>>> import time
>>> import datetime
>>> dt = datetime.datetime.strptime('2012-02-09', '%Y-%m-%d')
>>> time.mktime(dt.timetuple())
1328774400.0

--或--

>>> dt = datetime.datetime(year=2012, month=2, day=9)
>>> time.mktime(dt.timetuple())
1328774400.0

对于其他时间类型,如小时和秒,请访问此处: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior

关于来自日、月、年的 Python 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9223905/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com