So I have been learning or pretty much just playing around with the time where I managed to get I believe is ISOformat and I for some "dumb" reason can't translate it to a datetime from a ISOformat and I looked into
datetime.datetime.strptime
datetime.datetime.strftime
and I could easily say that i'm already lost from thinking on what to do so here I am.
Etc: I have a time that looks like
2018-03-08T08:00:00.000
and want it basically to look:
2018-03-08 08:00:00
meaning removing the T and the 3 last micro seconds.
What is the best suggestion to do it?