在python中将UNIX时间戳转换为str并将str转换为UNIX时间戳[重复]

Posted

技术标签:

【中文标题】在python中将UNIX时间戳转换为str并将str转换为UNIX时间戳[重复]【英文标题】:Convert UNIX timestamp to str and str to UNIX timestamp in python [duplicate] 【发布时间】:2013-12-14 05:44:23 【问题描述】:

例如:

我想将 UNIX 时间戳 1385629728 转换为 str "2013-11-28 17:08:48", 并将 str "2013-11-28 17:08:48" 转换为 UNIX 时间戳 1385629728

【问题讨论】:

请避免在 SO 上直接问谷歌问题。它降低了平均问题的标准。 【参考方案1】:

按如下方式进行:

#-*-coding:utf-8-*-

import datetime, time

def ts2string(ts, fmt="%Y-%m-%d %H:%M:%S"):
    dt = datetime.datetime.fromtimestamp(ts)
    return dt.strftime(fmt)

def string2ts(string, fmt="%Y-%m-%d %H:%M:%S"):
    dt = datetime.datetime.strptime(string, fmt)
    t_tuple = dt.timetuple()
    return int(time.mktime(t_tuple))

def test():
    ts = 1385629728

    string = ts2string(ts)
    print string

    ts = string2ts(string)
    print ts

if __name__ == '__main__':
    test()

【讨论】:

【参考方案2】:

你应该使用日期时间。

>>> import datetime
>>> print(datetime.datetime.fromtimestamp(int("1385629728")).strftime('%Y-%m-%d %H:%M:%S'))
2013-11-28 14:38:48
>>> print int(datetime.datetime.strptime('2013-11-28 14:38:48', '%Y-%m-%d %H:%M:%S').strftime("%s"))
1385629728

【讨论】:

这类回答我最喜欢。谢谢!【参考方案3】:
import time 

# where epoch is your epoch time value 
time.strftime("%a, %d %b %Y %H:%M:%S +0000", 
                        time.localtime(epoch))

Source

【讨论】:

以上是关于在python中将UNIX时间戳转换为str并将str转换为UNIX时间戳[重复]的主要内容,如果未能解决你的问题,请参考以下文章

将 datetime 转换为 Unix 时间戳并将其转换回 python

如何在 kotlin 中将纪元时间戳转换为 unix 十六进制时间戳?

如何在scala中将ISO 8601时间戳转换为unix时间戳?

转换unix时间戳php

在 Select 语句中将 DateTime 转换为 Unix 时间戳?

如何在 PySpark 中将 unix 时间戳列转换为人类可理解的时间戳? [复制]