時間對象表示獨立於任何特定日期的時間量,並假設每天正好有 24*60*60
秒。時間類沒有任何日期信息。
我們可以使用 time(hour, minute, second, microsecond)
構造函數實例化時間對象。
如果未提供任何參數,時間將默認為 00:00:00
。
from datetime import time
a = time()
# time(hour, minute, second, microsecond)
b = time(12,12,12,12)
print(a)
print(b)
print(type(b))
a = 00:00:00
b = 12:12:12.000012
Type b = <class 'datetime.time'>
類屬性
時間.小時,時間.分鍾,時間.秒,time.microsecond
from datetime import time
# time(hour, minute, second, microsecond)
a = time(1,2,3,4)
print("Hour = ", a.hour)
print("Minutes = ", a.minute)
print("Seconds = ", a.second)
print("Microseconds = ", a.microsecond)
Hour = 1
Minutes = 2
Seconds = 3
Microseconds = 4
time.tzinfo
該屬性存儲時間對象的時區信息。
樸素時間對象
from datetime import time
# time(hour, minute, second, microsecond)
a = time(1,2,3,4)
print(a.tzinfo)
None
感知時間對象
from datetime import time
from pytz import timezone
# time(hour, minute, second, microsecond)
a = time(1,2,3,4)
# Associating the time with UTC timezone
b = timezone('UTC').localize(a)
print(b.tzinfo)
UTC
相關用法
- Python Datetime Timedelta構造函數用法及代碼示例
- Python Datetime today方法用法及代碼示例
- Python Datetime utcnow方法用法及代碼示例
- Python Datetime fromisoformat方法用法及代碼示例
- Python Datetime Date構造函數用法及代碼示例
- Python Datetime strftime方法用法及代碼示例
- Python Datetime strptime方法用法及代碼示例
- Python Datetime utcfromtimestamp方法用法及代碼示例
- 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方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python Datetime | Time constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。