Python date string to date object

elif picture elif · May 10, 2010 · Viewed 435.3k times · Source

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.

Answer

SilentGhost picture SilentGhost · May 10, 2010

You can use strptime in the datetime package of Python:

>>> import datetime
>>> datetime.datetime.strptime('24052010', "%d%m%Y").date()
datetime.date(2010, 5, 24)