AttributeError: 'datetime.datetime' object has no attribute 'dtrftime'
发表在Python图书答疑
2019-09-29
《Python编程入门指南》第2章 Python入门必学 18页-18页
是否精华
是
否
版块置顶:
是
否
代码:
import datetime
print("当前年份:"+str(datetime.datetime.now().year))
print("当前日期时间:"+str(datetime.datetime.now().dtrftime('%y-%m-%d %H:%M:%S')))
问题:
当前年份:2019
Traceback (most recent call last):
File "D:/日期.py", line 3, in <module>
print("当前日期时间:"+str(datetime.datetime.now().dtrftime('%y-%m-%d %H:%M:%S')))
AttributeError: 'datetime.datetime' object has no attribute 'dtrftime'
不知道哪里错了,该如何修改,按书上的代码打上去的,求解?