我有

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/

10-16 11:21
查看更多