在python中,timedate
库包含一个datetime
(时间戳, a
日期and a
time`类。是否有仅时间
那么,我可以将datetime.time
对象以标准化的方式返回到前端吗?
答案 0 :(得分:2)
这是您要寻找的东西吗?
>>> import datetime
>>> now = datetime.datetime.now()
>>> now.time()
datetime.time(11, 39, 33, 932976)
>>> now.time().isoformat()
'11:39:33.932976'
>>>
答案 1 :(得分:1)
使用.isoformat
从stack build --copy-compiler-tool hdevtools
对象返回ISO8601格式的字符串。