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.
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.