I have two dates, one is a string in following format,
"2022-07-03T12:23:49.000Z"
The other is a datetime
object from this:
minimumDate = datetime.today() - timedelta(days=10)
How can I format them so I can compare them both?
P.S. I am not familiar with python, just use it for a project.