码迷,mamicode.com
首页 > 编程语言 > 详细

python 常用的函数

时间:2018-03-14 01:00:04      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:pre   str   mic   erro   ros   turn   pos   日期时间   ring   

python timestamp和datetime之间的转换

  1. 字符串日期时间转换成时间戳

    # '2015-08-28 16:43:37.283' --> 1440751417.283  
    # 或者 '2015-08-28 16:43:37' --> 1440751417.0  
    def string2timestamp(strValue):  
    
    try:          
        d = datetime.datetime.strptime(strValue, "%Y-%m-%d %H:%M:%S.%f")  
        t = d.timetuple()  
        timeStamp = int(time.mktime(t))  
        timeStamp = float(str(timeStamp) + str("%06d" % d.microsecond))/1000000  
        print timeStamp  
        return timeStamp  
    except ValueError as e:  
        print e  
        d = datetime.datetime.strptime(str2, "%Y-%m-%d %H:%M:%S")  
        t = d.timetuple()  
        timeStamp = int(time.mktime(t))  
        timeStamp = float(str(timeStamp) + str("%06d" % d.microsecond))/1000000  
        print timeStamp  
        return timeStamp  

2.时间戳转换成字符串日期时间

# 1440751417.283 --> '2015-08-28 16:43:37.283'  
def timestamp2string(timeStamp):  
    try:  
        d = datetime.datetime.fromtimestamp(timeStamp)  
        str1 = d.strftime("%Y-%m-%d %H:%M:%S.%f")  
        # 2015-08-28 16:43:37.283000'  
        return str1  
    except Exception as e:  
        print e  
        return ''  

python 常用的函数

标签:pre   str   mic   erro   ros   turn   pos   日期时间   ring   

原文地址:https://www.cnblogs.com/daihanlong/p/8564163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!