Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Silly question, but is there a built-in method for converting a date to a datetime in Python, ie. getting the datetime for the midnight of the date? The opposite conversion is easy - datetime has a .date() method. Do I really have to manually call datetime(d.year, d.month, d.day) ?

share|improve this question

5 Answers

up vote 130 down vote accepted

You can use datetime.combine(date, time); for the time, you create a datetime.time object initialized to midnight.

share|improve this answer
8  
Thanks. Combined with the fact that time() returns (0,0) I think this comes out the cleanest: datetime.combine(d, time()) – EMP Dec 21 '09 at 0:38
8  
Just be careful not to let your code get datetime.time() confused with time.time(). Qualified names FTW! – Dustin Dec 21 '09 at 1:19
4  
Yes, good point. Fortunately, combine() raises an exception if you pass in a time.time or anything else other than a datetime.time. – EMP Dec 21 '09 at 8:36
5  
For midnight, there's a python constant at either datetime.time.min (2.7.1+) or datetime.min.time() (older python) – larham1 Jun 4 '11 at 23:05
supercool! it saved my from writing (sloppy) code :) – Tommaso Barbugli Jun 30 '11 at 21:32

There are several ways, although I do believe the one you mention (and dislike) is the most readable one.

>>> t=datetime.date.today()
>>> datetime.datetime.fromordinal(t.toordinal())
datetime.datetime(2009, 12, 20, 0, 0)
>>> datetime.datetime(t.year, t.month, t.day)
datetime.datetime(2009, 12, 20, 0, 0)
>>> datetime.datetime(*t.timetuple()[:-4])
datetime.datetime(2009, 12, 20, 0, 0)

and so forth -- but basically they all hinge on appropriately extracting info from the date object and ploughing it back into the suitable ctor or classfunction for datetime.

share|improve this answer

You can use the timetuple() method and varargs.

datetime.datetime(*(d.timetuple()[:6]))
share|improve this answer
2  
-1 as being non obvious. – gahooa Dec 21 '09 at 0:36
2  
Despite being clever, by the way. – gahooa Dec 21 '09 at 0:37
This is useful for my situation. I don't know if it's a date or a datetime I'm being passed, and it's not very pythonic to check which class it is. This method looks like it will work for both datetime and date objects. – Gattster Oct 14 '10 at 20:51
I used to use this before discovering datetime.combine via @kiamlaluno's answer. I think it's fairly pythonic, especially given constructing a datetime.time object is likely to look something like datetime.time(*map(int,"H:M:S".split(":"))) anyway... – Tom Jan 29 '11 at 1:45

If you need something quick, datetime_object.date() gives you a date of a datetime object.

share|improve this answer
1  
the op wants the opposite, to go from date to datetime. – Tom Jan 29 '11 at 1:46
1  
It is not the answer but looking for this answer I found this post. Thanks Bassdread :) – Natim Jul 7 '11 at 20:21

I am a newbie to Python. But this code worked for me which converts the specified input I provide to datetime. Here's the code. Correct me if I'm wrong.

import sys
from datetime import datetime
from time import mktime, strptime

user_date = '02/15/1989'
if user_date is not None:
     user_date = datetime.strptime(user_date,"%m/%d/%Y")
else:
     user_date = datetime.now()
print user_date
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.