I have the following error on a code sample:
raise ParserError("Unknown string format: %s", timestr)
dateutil.parser._parser.ParserError: Unknown string format: Fall Semester 2018 Printed: Caux, 15/01/2021
Following is the code sample:
import dateutil.parser as dparser
text = 'Fall Semester 2018 Printed: Caux, 15/01/2021'
date_value = dparser.parse(text)
print(date_value)
'2018'and'15/01/2021', the dparser is failing to select one out of them @Mehmaam