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


Python datetime time()用法及代碼示例


Python datetime.time() 方法

datetime.time() 方法用於操作模塊 datetime 的 datetime 類的對象。

它使用實例方法並對其進行轉換並返回具有相同時、分、秒、微秒和折疊的時間對象。此方法的 tzinfo 為 None 。

模塊:

    import datetime

類:

    from datetime import datetime

用法:

    time()

參數:

  • None

返回值:

該方法的返回類型是具有相同時、分、秒、微秒和倍數的時間對象。 tzinfo 是無。

例:

## Creating a time object from a datetime object
from datetime import datetime
import pytz

## Creating datetime instance
x = datetime(2020, 3, 4,23,12,23,44)
d = x.time()
print("Original object:", x)
print("New time object:",d)
print()

x = datetime.now()
d = x.time()
print("Original date and time", x)
print("New time objec:", d)
print()

x = datetime.today()
d = x.time()
print("Printing the same")
print(x)
print(d)
print()

t = pytz.timezone("Asia/Kolkata")
## Adding tzinfo
x = x.astimezone(t)
d = x.time()
## Note:tzinfo is also not added in the object
## therefor giving a naive time object
print(x)
print(d)

輸出

Original object:2020-03-04 23:12:23.000044
New time object:23:12:23.000044

Original date and time 2020-05-03 18:05:23.458667
New time objec:18:05:23.458667

Printing the same
2020-05-03 18:05:23.458730
18:05:23.458730

2020-05-03 23:35:23.458730+05:30
23:35:23.458730


相關用法


注:本文由純淨天空篩選整理自 Python datetime time() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。