gpt4 book ai didi

python - 如何获取 future 时间的 datetime.now().isoformat()?

转载 作者:太空宇宙 更新时间:2023-11-04 01:47:46 25 4
gpt4 key购买 nike

我有

In [1]: from datetime import datetime

In [2]: datetime.now().isoformat()
Out[2]: '2019-11-05T14:55:58.267650'

我想从现在开始获取 10 秒的 isoformat + 将格式更改为 yyyymmddThhmmss。

格式更改可以通过以下方式完成:

In [6]: datetime.now().isoformat()
Out[6]: '2019-11-05T14:58:36.572646'

In [7]: datetime.now().isoformat().split('.')[0].replace('-', '').replace(':', '')
Out[7]: '20191105T145923'

但是我怎样才能增加时间呢?

最佳答案

也许可以使用 datetime.timedelta(),像这样:

>>> import datetime

>>> now = datetime.datetime.now()
>>> now
datetime.datetime(2019, 11, 5, 10, 9, 16, 129672)
>>> new_date = now + datetime.timedelta(seconds=30)
>>> new_date
datetime.datetime(2019, 11, 5, 10, 9, 46, 129672)

现在将新日期格式化为字符串:

>>> new_date.isoformat().split('.')[0].replace('-', '').replace(':', '')
'20191105T100946'

或者使用 .strftime() 更干净:

>>> new_date.strftime("%Y%m%dT%H%M%S")
'20191105T100946'

关于python - 如何获取 future 时间的 datetime.now().isoformat()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58711903/

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