I have the following String representing a date time that I need to read into a valid Python3 datetime object. My best attempt so far:
from datetime import datetime
string_date = '2013-04-27T12:27:52.100Z'
in_memory_date = datetime.strptime(created, '???')
I'm struggling with the date format for this string (???
). Can anybody point me in the right direction?