30秒学会 Python 片段 · 2022年9月15日

30秒学会 Python 片段 – Date to ISO format

Converts a date to its ISO-8601 representation.

  • Use datetime.datetime.isoformat() to convert the given datetime.datetime object to an ISO-8601 date.

代码实现

from datetime import datetime

def to_iso_date(d):
  return d.isoformat()

使用样例

from datetime import datetime

to_iso_date(datetime(2020, 10, 25)) # 2020-10-25T00:00:00

翻译自:https://www.30secondsofcode.org/python/s/to-iso-date