Convert date to datetime in Python

后端 未结 10 2462
感动是毒
感动是毒 2020-11-28 17:10

Is there a built-in method for converting a date to a datetime in Python, for example getting the datetime for the midnight of the giv

10条回答
  •  生来不讨喜
    2020-11-28 18:08

    One way to convert from date to datetime that hasn't been mentioned yet:

    from datetime import date, datetime
    d = date.today()
    datetime.strptime(d.strftime('%Y%m%d'), '%Y%m%d')
    

提交回复
热议问题