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) ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You can use datetime.combine(date, time); for the time, you create a |
|||||||||||||||||||
|
|
There are several ways, although I do believe the one you mention (and dislike) is the most readable one.
and so forth -- but basically they all hinge on appropriately extracting info from the |
|||
|
|
|
You can use the timetuple() method and varargs.
|
|||||||||||||
|
|
If you need something quick, |
||||
|
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.
|
|||
|
|