欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

AttributeError: ‘method_descriptor‘ object has no attribute ‘today‘

程序员文章站 2022-03-07 09:32:14
...

AttributeError: ‘method_descriptor‘ object has no attribute ‘today‘

错误:AttributeError: ‘method_descriptor’ object has no attribute ‘today’
出错代码:

yesterday = datetime.date.today() - datetime.timedelta(days=1)
yesterday_timestamp = int(time.mktime(yesterday.timetuple())) * 1000

导入原句:

from datatime import *

按提示改成:

import datetime

解决。

相关标签: 踩坑记录