當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Datetime utcfromtimestamp方法用法及代碼示例


Python 的 datetime.utcfromtimestamp(~) 方法從相應的 POSIX 時間戳返回 UTC 時間的 timezone-naive datetime 對象。如果您希望返回時區感知的日期時間對象,請使用 datetime.fromtimestamp(~) 方法。

參數

1. POSIX timestamp | timestamp

返回相應 datetime 對象的 POSIX 時間戳。

返回值

與 POSIX 時間戳對應的簡單 datetime 對象。

例子

from datetime import datetime
#The timestamp we want to convert to a date
ts = 1573245642
print(datetime.utcfromtimestamp(ts))



2019-11-08 20:40:42

相關用法


注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 Python Datetime | utcfromtimestamp method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。