0
>>> dt = '1/1/2016 00:09:55' # It supposes to be month day year
>>> from datetime import datetime
dtp = datetime.strptime(dt, '%m/%d/%y %H:%M:%S')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File
ValueError: time data '1/1/2016 00:09:55' does not match format '%m/%d/%y %H:%M:%S'
この時刻データを解析する方法?ありがとうございました。ValueError:時刻データ '1/1/2016 00:09:55'は '%m /%d /%y%H:%M:%S'と一致しません。