Python 時間戳起點是指計算機中用來表示時間的起點。在 Python 中,時間戳起點指的是 1970 年 1 月 1 日 00:00:00 UTC,也被稱為 Unix 時間戳。
import time # 獲取當前時間戳 timestamp = time.time() # 將時間戳轉換成表示時間的字符串 formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(timestamp)) print("當前時間戳為:%d" % timestamp) print("當前時間為:%s" % formatted_time)
Python 中使用 time 模塊可以處理時間戳和時間的轉換,其中 time.time() 方法可返回當前時間與時間戳起點之間的秒數,time.localtime() 方法可將時間戳轉換成時間元組,而 time.strftime() 可將時間元組轉換成字符串。
對于時間的相關處理,Python 的 datetime 模塊也提供了很多方便的方法,可以根據不同的需求選擇使用。
上一篇python 時間戳頻率
下一篇vue圖片截取畫面