vr全景资源嘿嘿嘿:python strtotime ? tito’s life

来源:百度文库 编辑:中财网 时间:2024/05/06 00:59:45

python strtotime

类归于: python — 标签:python — tito1945 @ 5:11 下午

php有一个非常有magic的函数,strtotime

可以把一个str的format的时间格式转化为mktime。

python里面没有,不过可以通过如下手段进行转化。

from time import mktime,strptimedef testTime():modified = int(mktime(strptime('2009-07-12 16:29:09','%Y-%m-%d %H:%M:%S')))return modified