Got in touch with a few thousand dates using the following format:
2017-10-23T03:36:23.337+02:00
I only know that it's CET (central european time). Instead of trim the value manually, there is any solution that would give me this date in the format dd/mm/yy hh/mm/ss that I could use to subtract (find the diference between them) the dates without problems? Thanks for your inputs.
Here my code:
from_date="2017-10-23T03:36:23.337+02:00"
import time
conv=time.strptime(from_date,"%Y-%m-%d %H:%M:%S")
print(time.strftime("%d/%m/%Y %H:%M:%S",conv))