import datetime currentDate = datetime.date.today() print (currentDate) print (currentDate.year)
这给出了一个错误:
AttributeError: module 'datetime' has no attribute 'date'
我还在学习Python(1周大)
导入_日期时间 打印(_datetime.date.today()) 效果很好
尝试使用以下导入:
from datetime import datetime
我正在使用 VSCode 和 Python 3。
面临类似的问题AttributeError:模块“datetime”没有属性“date”
我将我的文件命名为 datetime.py 所以我猜它正在导入自身。 我将其更改为 datetimemanipulations.py 并且能够打印今天的日期。
import datetime as dt print(dt.date.today())