是什么意思。以下是将数字转换为 的示例timestamp
:
import time
result = str(time.strftime('%H:%M:%S', time.gmtime(12345)))
print(result) # 03:25:45
是否有类似的解决方案(来自某些库或自定义片段的“本机”)用于将数字转换为距离?任何格式:'км:м:см'
或值列表[км, м, см]
。
我搜索了类似的查询'convert integer to distance'
,但什么也没找到。
这样的函数并不难写。有这个选项: