我有一个脚本需要在脚本的不同行执行以下操作:
today_date = datetime.date.today()
date_time = datetime.strp(date_time_string, '%Y-%m-%d %H:%M')
在我的import
陈述中,我有以下内容:
from datetime import datetime
import datetime
我收到以下错误:
AttributeError: 'module' object has no attribute 'strp'
如果我将import
语句的顺序更改为:
import datetime
from datetime import datetime
我收到以下错误:
AttributeError: 'method_descriptor' object has no attribute 'today'
如果我再次将import
语句更改为:
import datetime
我收到以下错误:
AttributeError: 'module' object has no attribute 'strp'
这里发生了什么,我如何让两者都工作?