79493616

Date: 2025-03-07 23:15:37
Score: 1
Natty:
Report link
from dateutil.parser import parse
date_obj1='08-02-25'
date_obj1 = parse(date_obj1)
date_obj2=date_obj1.date()
# below will in String form which is not operatable data processing
print(type(date_obj1)
# below is in date format which in operatable in data processing
print(type(date_obj2))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abid Mian