Python3 time.localtime()方法

2019-10-16 23:09:56
localtime()方法類似於gmtime()方法,但其轉換秒數為本地時間。如果secs未提供或為None,當前時間呼叫time()返回其結果。 當DST適用於給定的時間, dst標誌被設定為1。

語法

以下為 localtime() 方法的語法:
time.localtime([ sec ])

引數

  • sec -- 這將被轉換成結構體 struct_time 來表示秒數。

返回值

此方法不返回任何值。

範例

下面的範例顯示 localtime() 方法的使用。
#!/usr/bin/python3
import time

print ("time.localtime() : %s" , time.localtime())
當我們執行上面的程式,它會產生以下結果:
time.localtime() : time.struct_time(tm_year=2016, tm_mon=2, tm_mday=15, tm_hour=10, tm_min=13, tm_sec=50, tm_wday=0, tm_yday=46, tm_isdst=0)