1. 程式人生 > >如何從日期對象python獲取以毫秒(秒後3位小數)為單位的時間值?

如何從日期對象python獲取以毫秒(秒後3位小數)為單位的時間值?

import 當前 轉換 port 如何 cti asc datetime others

要獲取具有毫秒(秒後3位小數)的日期字符串,請使用以下命令:

from datetime import datetime

print datetime.utcnow().strftime(%Y-%m-%d %H:%M:%S.%f)[:-3]

輸出2018-10-04 10:18:32.926

%f 顯示毫秒

要在python中獲得毫秒,請使用以下代碼。

import datetime
#  獲得當前時間
now=datetime.datetime.now() #2019-04-11 14:18:41.629019
print(now)

# 轉換為指定的格式: otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S")#2019-04-11 14:18:41 print(otherStyleTime) #

輸出如下所示

  2019-03-11 17:34:28.290409

如何從日期對象python獲取以毫秒(秒後3位小數)為單位的時間值?