I have a CSV with time stamp data looks like this:
22/11/2018 10:21:34
And im parsing it this way : currentTime = dt.strptime(line[0], "%d/%m/%Y %H:%M:%S")
I have problem when parsing rows of this kind (when the seconds equal 00):
22/11/2018 10:21:00
i get : time data '22/11/2018 10:21' does not match format '%d/%m/%Y %H:%M:%S'