做开发中难免时间类型之间的转换, 最近就发现前端js和后端django经常要用到这个转换, 其中jsDate.now()精确到毫秒,而Python中Datetime.datetime.now()是精确到微秒的。

from datetime import datetime
import time
dt = datetime(2017,12,27,15,49)
ts = time.mktime(dt.timetuple())
print ts

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

[python] view plain copy

# '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  
  1. 时间戳转换成字符串日期时间

[python] view plain copy

# 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 ''

相关文章:

  • 2021-07-06
  • 2022-12-23
  • 2021-12-14
  • 2022-12-23
  • 2021-11-26
  • 2022-01-16
  • 2021-11-02
  • 2021-04-03
猜你喜欢
  • 2022-12-23
  • 2021-04-23
  • 2022-12-23
  • 2021-07-28
  • 2022-12-23
  • 2021-09-16
  • 2021-12-09
相关资源
相似解决方案