gpt4 book ai didi

python - 将 unicode 转换为 datetime 正确的 strptime 格式

转载 作者:IT老高 更新时间:2023-10-28 21:07:15 25 4
gpt4 key购买 nike

我正在尝试将 unicode 对象转换为 datetime 对象。

我通读了文档:http://docs.python.org/2/library/time.html#time.strptime

试过了

datetime.strptime(date_posted, '%Y-%m-%dT%H:%M:%SZ') 

但我收到错误消息 ValueError: time data '2014-01-15T01:35:30.314Z' does not match format '%Y-%m-%dT%H:%M:%SZ'

对什么是正确的格式有任何反馈吗?

我很感激时间和专业知识。

最佳答案

你可以解析微秒:

from datetime import datetime
date_posted = '2014-01-15T01:35:30.314Z'
datetime.strptime(date_posted, '%Y-%m-%dT%H:%M:%S.%fZ')

关于python - 将 unicode 转换为 datetime 正确的 strptime 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21151664/

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