好的,我放弃了。 Python版本2.7.2
>>> from datetime import datetime
>>> datestr = "2014-01-24"
>>> displaydateobj = datetime.date(datetime.strptime(datestr,'%Y-%d-%m'))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\_strptime.py", line 328, in _strptime
data_string[found.end():])
ValueError: unconverted data remains: 4
我错过了什么?我已经检查了strptime格式字符串十几次。
答案 0 :(得分:7)
应该是:
datetime.date(datetime.strptime(datestr,'%Y-%m-%d'))
?
答案 1 :(得分:2)
试试这个:
datetime.strptime(datestr,'%Y-%m-%d').date()
答案 2 :(得分:2)
您的格式字符串是向后的。它应该是%Y-%m-%d
。正如你所拥有的那样,它试图将值24
置于%m
并因为没有24个月而失败