最佳答案
我得到以下错误:
time data '07/28/2014 18:54:55.099000' does not match format '%d/%m/%Y %H:%M:%S.%f'
但是我不能看到什么参数是错误的在 %d/%m/%Y %H:%M:%S.%f
?
这是我用的密码。
from datetime import datetime
time_value = datetime.strptime(csv_line[0] + '000', '%d/%m/%Y %H:%M:%S.%f')
I have added and removed the 000
but I get the same error.