s = "June 19, 2010"
How do I conver that to a datetime object?
|
|
|
Use For the example in the question, you could do this:
|
|||
|
|
|
There's also the very good dateutil library, that can parse also stranger cases:
|
|||
|
|
|
As of python 2.5 you have the method datetime.strptime(): http://docs.python.org/library/datetime.html
if your locale is EN. |
|||
|
|
|
Use datetime.datetime.strptime:
|
|||
|
|