def date_convert(value):
value = value.strip().replace("·", "").strip()
try:
create_date = datetime.datetime.strptime(value, "%Y/%m/%d").date()
except Exception as e:
create_date = datetime.datetime.now().date()
return create_date
pwld.png