How do I convert a string to a date object in python?
The string would be: "24052010" (corresponding to the format: "%d%m%Y")
I don't want a datetime.datetime object, but rather a datetime.date
I suspect that I'm asking a trivial question but I searched and couldn't find it neither on stackoverflow nor on google.