I've come across a date format like this:
8/17/18 19:00
which corresponds to August 17th, 2018.
I tried parsing this with:
pendulum.parse(date)
--> returns all sorts of mixed dates when day is less than 12datetime.datetime.strptime(date, '%m/%d/%Y')
-->%m
goes 01 to 12, not this case
What is the correct way to parse this completely arbitrary date format ?