類方法datetime.utcnow()
可用於返回當前 UTC 日期和時間。
參數
無參數。
返回值
返回表示當前 UTC 日期和時間的 datetime
對象(沒有關聯的時區信息,即天真時區)。
例子
獲取當前 UTC 日期和時間
from datetime import datetime
a = datetime.utcnow()
print(a)
2021-01-09 04:44:55.611314
相關用法
- Python Datetime utcfromtimestamp方法用法及代碼示例
- Python Datetime today方法用法及代碼示例
- Python Datetime fromisoformat方法用法及代碼示例
- Python Datetime Date構造函數用法及代碼示例
- Python Datetime strftime方法用法及代碼示例
- Python Datetime Time構造函數用法及代碼示例
- Python Datetime strptime方法用法及代碼示例
- Python Datetime Timedelta構造函數用法及代碼示例
- Python Datetime now方法用法及代碼示例
- Python Datetime fromtimestamp方法用法及代碼示例
- Python Datetime Datetime構造函數用法及代碼示例
- Python Datetime.replace()用法及代碼示例
- Python Pandas DatetimeIndex構造函數用法及代碼示例
- Python Django DateDetailView用法及代碼示例
- Python DateTime轉integer用法及代碼示例
- Python DateTime astimezone()用法及代碼示例
- Python Django DateTimeField.input_formats用法及代碼示例
- Python DateTime weekday()用法及代碼示例
- Python Pandas DataFrame empty屬性用法及代碼示例
- Python Pandas DataFrame pop方法用法及代碼示例
- Python Pandas DataFrame nsmallest方法用法及代碼示例
- Python Django DataSource用法及代碼示例
- Python Pandas DataFrame sample方法用法及代碼示例
- Python Pandas DataFrame items方法用法及代碼示例
- Python Pandas DataFrame max方法用法及代碼示例
注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 Python Datetime | utcnow method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。