Possible Duplicate:
Parsing Dates and Times from Strings using python
I'm reading a string
"2011-06-11"
How can I cast this to a date object?
thanks
I'm reading a string
How can I cast this to a date object? thanks |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you know it will be in that format, you can use the
(and it's not a cast, you're actually creating a new date out of the string) If you don't know the format of the date, I suggest looking at the dateutil module which provides a powerful date parsing function. |
|||||||
|
This parses the string and returns a
This returns a
The |
|||
|
|
|
Do this:
|
|||
|
|
Also check out How to parse ISO formatted date in python? |
|||
|
|