I'm trying to convert dates from the utcnow (ISO 8601) function of azure logics apps in python:
this one returns the following format:
2018-02-07T13:30:17.2967490Z
so I'm doing it:
dateformat = datetime.strptime ("2018-02-07T13:30:17.2967490Z","%Y-%m-%dT%H:%M:%S.%fZ")
but it doesn't work, do you have any idea?