gpt4 book ai didi

python - 在python中以特定格式获取日期

转载 作者:行者123 更新时间:2023-11-28 19:48:03 25 4
gpt4 key购买 nike

我怎样才能得到一个日期。 python格式:

2016-04-26T19:50:48Z

我这样做:

import datetime

now = datetime.now()
now.strftime("%Y %m %d %H:%M")

最佳答案

嗯,首先,您没有正确获取 now()。这是在 datetime.datetime 中,而不是在顶级 datetime 中。其次,您似乎没有尝试获取所需的格式字符串 - 它甚至没有您指定的破折号。

>>> import datetime
>>> now = datetime.now()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'now'
>>> now = datetime.datetime.now()
>>> now.strftime("%Y %m %d %H:%M")
'2016 04 28 17:20'
>>> now.strftime("%Y-%m-%dT%H:%M:%SZ")
'2016-04-28T17:20:09Z'

关于python - 在python中以特定格式获取日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36927538/

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