python 日期输出附带毫秒
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 日期输出附带毫秒相关的知识,希望对你有一定的参考价值。
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 日期输出附带毫秒的主要内容,如果未能解决你的问题,请参考以下文章