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-12-03T02:00:00Z
我想拆分日期和时间并显示如下:03/12/2012 02:00:00
我怎样才能在 python 中以尽可能少的行做到这一点?(“T”和“Z”将被删除)
这将通过datetime库,如果输入字符串的格式不正确或包含无效的日期时间信息(包括闰年!),则会引发异常。
datetime
from datetime import datetime datetime.strptime("2012-12-03T02:00:00Z", "%Y-%m-%dT%H:%M:%SZ").strftime("%d/%m/%Y %H:%M:%S")