I want to convert this time 2022-02-24T01:44:22 to 02/24/2022
since_date = 2022-02-24T01:44:22
print (since_date.strftime("%m/%d/%Y"))
Error:
AttributeError: 'str' object has no attribute 'strftime'
I want to convert this time 2022-02-24T01:44:22 to 02/24/2022
since_date = 2022-02-24T01:44:22
print (since_date.strftime("%m/%d/%Y"))
Error:
AttributeError: 'str' object has no attribute 'strftime'