I want to convert '2011-10-13' to a date object representing the same. I use strptime but it includes the time, which I dont need. How to best avoid this?
d = datetime.datetime.strptime("2011-10-13", "%Y-%m-%d")
print d
2011-10-13 00:00:00
|
I want to convert '2011-10-13' to a date object representing the same. I use strptime but it includes the time, which I dont need. How to best avoid this? d = datetime.datetime.strptime("2011-10-13", "%Y-%m-%d") print d 2011-10-13 00:00:00 |
|||
|
You can use the .date() method:
|
|||
|
|
date_stringin python? – Matt Ball Oct 14 '11 at 21:21