我正在使用Python 3.7并尝试从库中学习datetime
模块,但我正在获取AttributeError
。下面的代码:
import datetime
t = datetime.time(4, 20, 1)
# Let's show the different components
print(t)
print('hour :', t.hour)
print('minute:', t.minute)
print('second:', t.second)
print('microsecond:', t.microsecond)
print('tzinfo:', t.tzinfo)
作为运行文件,我收到此错误AttributeError: module 'datetime' has no attribute 'time'
请帮助我找到我要去的地方。谢谢
答案 0 :(得分:5)
问题可能是您的python文件与datetime模块具有相同的名称,也许您将程序文件称为 datetime.py 。
您需要重命名程序文件并删除路径中生成的任何最终的.pyc文件,然后才能导入正确的datetime模块。