I have the following string:
'2017-08-15T13:34:35Z'
How to convert this string to object that I can call .isoformat()?
someobject = convert('2017-08-15T13:34:35Z')
someobject.isoformat()
How to implement convert()?
I am reading a csv file with German date format.
Seems like it worked ok in this post:
Picking dates from an imported CSV with pandas/python
However, it seems like in my case the date is not recognized as …