所以我使用to_datetime()将看起来像'2015年1月23日'的字符串转换为看起来像'2015-01-23'但是它的dtype是datetime [ns]而不是datetime的日期时间[ d。在使用to_datetime()或之后的过程中,如何将其转换为datetime [D]?感谢。
答案 0 :(得分:1)
我建议你可以使用strptime()和date()
例如:
datetime.datetime.strptime('23 Jan 2015', "%d %b %Y").date()
返回' 2015-01-23'