用法:
classmethod time.fromisoformat(time_string)
以
time.isoformat()
发出的格式之一返回与time_string
对应的time
。具体来说,此函数支持以下格式的字符串:HH[:MM[:SS[.fff[fff]]]][+HH:MM[:SS[.ffffff]]]
警告
not
确实支持解析任意 ISO 8601 字符串。它仅用作time.isoformat()
的逆运算。例子:
>>> from datetime import time >>> time.fromisoformat('04:23:01') datetime.time(4, 23, 1) >>> time.fromisoformat('04:23:01.000384') datetime.time(4, 23, 1, 384) >>> time.fromisoformat('04:23:01+04:00') datetime.time(4, 23, 1, tzinfo=datetime.timezone(datetime.timedelta(seconds=14400)))
3.7 版中的新函数。
相关用法
- Python datetime.time.isoformat用法及代码示例
- Python datetime.timetz()用法及代码示例
- Python datetime.timedelta用法及代码示例
- Python datetime.timedelta()用法及代码示例
- Python datetime.tzinfo()用法及代码示例
- Python datetime.tzinfo.fromutc用法及代码示例
- Python datetime.tzname()用法及代码示例
- Python datetime.tzinfo.dst用法及代码示例
- Python datetime.datetime.ctime用法及代码示例
- Python datetime.utcoffset()用法及代码示例
- Python datetime.datetime.fromisoformat用法及代码示例
- Python datetime.datetime.timetuple用法及代码示例
- Python datetime.date.isoformat用法及代码示例
- Python datetime.date.replace用法及代码示例
- Python datetime.date.ctime用法及代码示例
- Python datetime.datetime.isoformat用法及代码示例
- Python datetime.date.fromisoformat用法及代码示例
- Python datetime.date.isocalendar用法及代码示例
- Python datetime.datetime.astimezone用法及代码示例
- Python datetime astimezone()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 datetime.time.fromisoformat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。