My datetime data is like this:
2016-03-01 19:25:53.053404
I am trying to use
datetime.strptime(date, "%Y-%m-%d %HH:%MM:%SS")
But I get this error:
ValueError: time data '2016-03-01 19:24:35.165425' does not match format '%Y-%m-%d %HH:%MM:%SS'
How can I fix the format "%Y-%m-%d %HH:%MM:%SS
" to match the datetime format that I have?