date = '10624'.
here,
1 is month i.e. Jan,
06 is day,
24 is Year.
I don't want to use any formatting on string (like add 0 at start in string or strip this string into small parts).
I want to convert this string into python date object directly using strftime.
%-m%d%y is not working and %m%d%y is giving wrong output(month is parsing as 10 and not 01)
You still need some formatting.