[Answered ]-What's the correct datetime format for this string date generated by python?

1👍

As per comment:

from datetime import datetime
print(datetime.strptime('2022-08-30T11:53:52.204219', "%Y-%m-%dT%H:%M:%S.%f"))

Result:

2022-08-30 11:53:52.204219
👤Cow

Leave a comment