gpt4 book ai didi

python - 属性错误 : 'time.struct_time' object has no attribute 'toordinal'

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

我是 python 的新手,我不明白如何正确格式化日期。

我的数据是这样的 Fri, 09 Dec 2011 06:50:37 UTC

我是这样准备的:

dates.append(time.strptime(row[5], "%a, %d %b %Y %H:%M:%S %Z"))

那我试试看

dates = matplotlib.dates.date2num(dates)

出现以下错误:

AttributeError: 'time.struct_time' object has no attribute 'toordinal'

最佳答案

您正在使用 time 模块,但 matplotlib 需要 datetime 对象。

尝试使用这样的东西:

from datetime import datetime

dates.append(datetime.strptime(row[5], "%a, %d %b %Y %H:%M:%S %Z"))
...

关于python - 属性错误 : 'time.struct_time' object has no attribute 'toordinal' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8538296/

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