datetime转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datetime转换相关的知识,希望对你有一定的参考价值。

1.时间戳to时间

def dateTrans(unixtime):
    dt = datetime.datetime.fromtimestamp(unixtime).strftime(%Y-%m-%d %H:%M:%S)
    return dt
print dateTrans(1493646936)

 

以上是关于datetime转换的主要内容,如果未能解决你的问题,请参考以下文章

记录C#常用的代码片段

在 datetime、Timestamp 和 datetime64 之间转换

学习笔记:python3,代码片段(2017)

不适用于python中的代码datetime.strptime

在代码片段中包含类型转换

在 Flutter 中为 DateTime 转换似乎无法正常工作