im getting the datetime value as 2022-08-25T20:35:12.744Z. i need to compare this current datetime and get its difference date time.
from datetime import datetime
date_time_str='2022-08-25T20:35:12.744Z'
print(datetime.strptime(date_time_str, '%d/%m/%y'))
how to caculate this value into datetime value ?