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

python 日期输出附带毫秒

时间:2018-12-31 19:05:54      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:python   alt   head   int   pre   local   style   ftime   oca   

 

def get_time_stamp(ct):
    local_time = time.localtime(ct)
    data_head = time.strftime("%Y-%m-%d %H:%M:%S", local_time)
   data_secs
= (ct - int(ct)) * 1000 time_stamp = "%s:%03d" % (data_head, data_secs) return time_stamp
print(get_time_stamp(1546244983.3656037))

输出

2018-12-31 16:30:05:069

 

 

或者

import datetime
 
print(datetime.datetime.now()) 
print(datetime.datetime.now().strftime(%Y-%m-%d %H:%M:%S:%f))
print(datetime.datetime.now().strftime(%Y%m%d%H%M%S%f))

 

python 日期输出附带毫秒

标签:python   alt   head   int   pre   local   style   ftime   oca   

原文地址:https://www.cnblogs.com/sea-stream/p/10202521.html

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