Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串,例如“2012 年 7 月 3 日”,我想要一个日期时间对象。我正在寻找最好的方法来做到这一点。
你读过文档吗?
>>> import datetime >>> datetime.datetime.strptime('03 July 2012', '%d %B %Y') datetime.datetime(2012, 7, 3, 0, 0)
%d停留天 (03)、%B整月天 (7 月) 和%Y年 (2012)。
%d
%B
%Y